您的位置:首页 > 其它

UVA 10891 Game of Sum 记忆化搜索

2013-08-29 17:27 267 查看
Game of Sum

Input File:
e.in
Output: Standard Output

This is a two player game. Initially there are n integer numbers in an array and players 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

The input consists of a number of cases. Each case starts with a line specifying the integer n (0 < n ≤100), the number of elements in the array. After that, n numbers are given for the
game. Input is terminated by a line where n=0.

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

Sample Input Output for Sample Input

4

4 -10 -20 7

4

1 2 3 4

0

7

10

Problem setter: Syed Monowar Hossain
Special Thanks: Derek Kisman, Mohammad Sajjad Hossain

#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;

const int maxn=111;

int a[maxn],dp[maxn][maxn],s[maxn],vis[maxn][maxn];

int dpp(int i,int j)
{
    if(vis[i][j])
        return dp[i][j];
    vis[i][j]=1;
    int m=0,k;
    for(k=i+1;k<=j;k++)
        m=min(m,dpp(k,j));
    for(k=i;k<j;k++)
        m=min(m,dpp(i,k));
    dp[i][j]=s[j]-s[i-1]-m;
    return dp[i][j];
}

int main()
{
    int n;
    while(cin>>n&&n)
    {
        int i;
        memset(vis,0,sizeof(vis));
        memset(s,0,sizeof(s));
        for(i=1;i<=n;i++)
        {
            scanf("%d",&a[i]);
            s[i]=s[i-1]+a[i];
        }
        cout<<2*dpp(1,n)-s
<<endl;
    }
    return 0;
}


O(n^2)的递推做法

#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;

const int maxn=111;

int a[maxn],d[maxn][maxn],s[maxn],f[maxn][maxn],g[maxn][maxn];

int main()
{
    int n;
    while(cin>>n&&n)
    {
        int i;
        memset(s,0,sizeof(s));
        for(i=1;i<=n;i++)
        {
            scanf("%d",&a[i]);
            d[i][i]=f[i][i]=g[i][i]=a[i];
            s[i]=s[i-1]+a[i];
        }
        for(int k=1;k<n;k++)
            for(i=1;i+k<=n;i++)
        {
            int j=i+k;
            int m=0;
            m=min(m,f[i+1][j]);
            m=min(m,g[i][j-1]);
            d[i][j]=s[j]-s[i-1]-m;
            f[i][j]=min(d[i][j],f[i+1][j]);
            g[i][j]=min(d[i][j],g[i][j-1]);
        }
        cout<<2*d[1]
-s
<<endl;
    }
    return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: