CF859C Pie Rules
Posted ppxppx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF859C Pie Rules相关的知识,希望对你有一定的参考价值。
洛咕
题意:有一个长度为(n(n<=50))的序列,Alice和Bob在玩游戏.Bob先手掌握决策权.他们从左向右扫整个序列,在任意时刻,拥有决策权的人有如下两个选择:将当前的数加到自己的得分中,并将决策权给对方,对方将获得下一个数的决策权.将当前的数加到对方的得分中,并将决策权保留给自己,自己将获得下一个数的决策权.假定他们都使用最优策略,求他们最后分别能获得多少分.
分析:不能直接贪心或者DP,因为当前的操作是有后效性的.所以我们倒着DP,设(f[i])表示从i到最后进行最优操作能够获得的最大分数(假设我们对第i+1次具有决策权,对第i次无决策权),所以(f[i]=max(f[i+1],sum[i]-f[i+1])).
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<queue>
#include<map>
#include<set>
#define ll long long
using namespace std;
inline int read(){
int x=0,o=1;char ch=getchar();
while(ch!='-'&&(ch<'0'||ch>'9'))ch=getchar();
if(ch=='-')o=-1,ch=getchar();
while(ch>='0'&&ch<='9')x=x*10+ch-'0',ch=getchar();
return x*o;
}
const int N=105;
int a[N],sum[N],f[N];
int main(){
int n=read();
for(int i=1;i<=n;++i)a[i]=read();
for(int i=n;i>=1;--i)sum[i]=sum[i+1]+a[i];
for(int i=n;i>=1;--i){
f[i]=max(f[i+1],sum[i]-f[i+1]);
}
printf("%d %d
",sum[1]-f[1],f[1]);
return 0;
}
以上是关于CF859C Pie Rules的主要内容,如果未能解决你的问题,请参考以下文章
报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段
报错:✘ http://eslint.org/docs/rules/indent Expected indentation of 0 s paces but found 2(代码片段