mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 19:08:47 +00:00
P2964 [USACO09NOV]A Coin Game S
https://www.luogu.com.cn/record/77095873
This commit is contained in:
parent
6cab6f75a8
commit
7166536294
43
Luogu/P2964/P2964.cpp
Normal file
43
Luogu/P2964/P2964.cpp
Normal file
@ -0,0 +1,43 @@
|
||||
#include <iostream>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
const int N = 2005;
|
||||
|
||||
// f[当前位置][上一组长度]
|
||||
int n, a[N], s[N], f[N][N];
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
cin.tie(nullptr);
|
||||
|
||||
cin >> n;
|
||||
|
||||
for (int i = 1; i <= n; i++) {
|
||||
cin >> a[i];
|
||||
}
|
||||
|
||||
for (int i = n; i; i--) {
|
||||
s[i] = s[i + 1] + a[i];
|
||||
}
|
||||
|
||||
for (int i = n; i; i--) {
|
||||
for (int j = 1, k = 1; j <= n; j++, k += 2) {
|
||||
f[i][j] = f[i][j - 1];
|
||||
|
||||
if (k <= n - i + 1) {
|
||||
f[i][j] = std::max(f[i][j], s[i] - f[i + k][k]);
|
||||
}
|
||||
|
||||
if (k + 1 <= n - i + 1) {
|
||||
f[i][j] = std::max(f[i][j], s[i] - f[i + k + 1][k + 1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
cout << f[1][1] << endl;
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user