LightOJ-1031 博弈 区间DP

1031 - Easy Game
Time Limit: 2 second(s)Memory Limit: 32 MB

You are playing a two player game. Initially there are n integer numbers in an array and player A and B get chance to take them alternatively. Each player can take one or more numbers from the left or right end of the array but cannot take from both ends at a time. He can take as many consecutive numbers as he wants during his time. The game ends when all numbers are taken from the array by the players. The point of each player is calculated by the summation of the numbers, which he has taken. Each player tries to achieve more points from other. If both players play optimally and player A starts the game then how much more point can player A get than player B?

Input

Input starts with an integer T (≤ 100), denoting the number of test cases.

Each case contains a blank line and an integer N (1 ≤ N ≤ 100) denoting the size of the array. The next line contains N space separated integers. You may assume that no number will contain more than 4digits.

Output

For each test case, print the case number and the maximum difference that the first player obtained after playing this game optimally.

Sample Input

Output for Sample Input

2

 

4

4 -10 -20 7

 

4

1 2 3 4

Case 1: 7

Case 2: 10

 


SPECIAL THANKS: JANE ALAM JAN (DATASET)


题目链接:

题目大意:
一排数字两人轮流从两边拿,都采取最优策略,问先手最多比后手多拿多少。

解题思路:
本题有两种不错的递推思路。
第一种,比较直接。定义dp[0][i][j]为轮到先手,数字剩下区间i到j的结果,dp[1][i][j]为轮到后手的结果。
第二种,稍微巧妙。定义dp[i][j]为先手最多能从区间i到j内取得多少,轮流取的话先手实际上是相互转换的。于是
dp[i][j]=max(sum[i][j]-dp[k][j],sum[i][j]-dp[i][k]),在区间内枚举k即可。

AC代码:
方法一
import java.util.*;

public class Main {
	static int T,n,M=10000000;
	static int[] aa=new int[105];
	static int[] ss=new int[105];
	static int[][][] dp=new int[2][105][105];

	public static void main(String[] args) {
		Scanner in=new Scanner(System.in);
		T=in.nextInt();
		for(int t=1;t<=T;t++)
		{
			n=in.nextInt();
			for(int i=1;i<=n;i++)
			{
				aa[i]=in.nextInt();
				ss[i]=ss[i-1]+aa[i];
			}
			for(int len=1;len<=n;len++)
			for(int i=1;i+len-1<=n;i++)
			{
				int j=i+len-1;
				dp[0][i][j]=-M;dp[1][i][j]=M;
				for(int k=1;k<=len;k++)
				{
					dp[0][i][j]=Math.max(dp[0][i][j],dp[1][i+k][j]+ss[i+k-1]-ss[i-1]);
					dp[0][i][j]=Math.max(dp[0][i][j],dp[1][i][j-k]+ss[j]-ss[j-k]);
					dp[1][i][j]=Math.min(dp[1][i][j],dp[0][i+k][j]-ss[i+k-1]+ss[i-1]);
					dp[1][i][j]=Math.min(dp[1][i][j],dp[0][i][j-k]-ss[j]+ss[j-k]);
				}
			}
			System.out.println("Case "+t+": "+dp[0][1][n]);
		}
	}
}

方法二
import java.util.*;

public class Main {
	static int T,n,sum,M=10000000,ans;
	static int[] aa=new int[105];
	static int[] ss=new int[105];
	static int[][] dp=new int[105][105];

	public static void main(String[] args) {
		Scanner in=new Scanner(System.in);
		T=in.nextInt();
		for(int t=1;t<=T;t++)
		{
			n=in.nextInt();
			for(int i=1;i<=n;i++)
			{
				aa[i]=in.nextInt();
				ss[i]=ss[i-1]+aa[i];
			}
			for(int len=1;len<=n;len++)
			for(int i=1;i+len-1<=n;i++)
			{
				int j=i+len-1,sum=ss[j]-ss[i-1];
				dp[i][j]=-M;
				for(int k=1;k<=len;k++)
				{
					dp[i][j]=Math.max(dp[i][j],sum-dp[i+k][j]);
					dp[i][j]=Math.max(dp[i][j],sum-dp[i][j-k]);
				}
			}
			ans=dp[1][n]*2-ss[n];
			System.out.println("Case "+t+": "+ans);
		}
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值