CodeForces 731E Funny Game

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 731E Funny Game相关的知识,希望对你有一定的参考价值。

博弈,$dp$。

设$f[i]$表示 如果先手第一次出手取到位置$i$,直到游戏结束,双方均采取最优策略,先手-后手得分的差值。

那么$f[i]=min(sum[i]-sum[j]+maxf[j+1])$,取$min$是因为后手采取最优策略,取$maxf$是因为先手采取最优策略。最终答案就是$max(f[i])$。

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<vector>
#include<map>
#include<set>
#include<queue>
#include<stack>
#include<ctime>
#include<iostream>
using namespace std;
typedef long long LL;
const double pi=acos(-1.0),eps=1e-10;
void File()
{
    freopen("D:\\in.txt","r",stdin);
    freopen("D:\\out.txt","w",stdout);
}
template <class T>
inline void read(T &x)
{
    char c = getchar();
    x = 0;
    while(!isdigit(c)) c = getchar();
    while(isdigit(c))
    {
        x = x * 10 + c - 0;
        c = getchar();
    }
}

long long sum[200010],a[200010];
long long maxf[200010],f[200010],ans,x;
int n;

int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++) cin>>a[i];
    for(int i=1;i<=n;i++) sum[i]=sum[i-1]+a[i];

    maxf[n]=f[n]=sum[n];
    f[n-1]=sum[n-1]-sum[n];
    maxf[n-1]=max(maxf[n],f[n-1]);
    x=-sum[n-1]+f[n];

    for(int i=n-2;i>=2;i--)
    {
        f[i]=min(sum[i]+x,sum[i]-sum[n]);
        maxf[i]=max(maxf[i+1],f[i]);
        x=min(x,-sum[i]+maxf[i+1]);
    }

    ans=f[n];
    for(int i=2;i<=n;i++) ans=max(ans,f[i]);
    cout<<ans<<endl;

    return 0;
}

 

以上是关于CodeForces 731E Funny Game的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #725 (Div. 3) E. Funny Substrings(字符串小模拟)

Codeforces Round #376 (Div. 2) E. Funny Game

cf731E

将 vis.gam 用于 mgcv GAM 时将 z 轴值标准化为 [0, 1]

GAM 部署工具

POJ 2484A Funny Game