#include <bits/stdc++.h>
#define int long long
#define all(v) v.begin(), v.end()
using namespace std;
const int sz = 3e3 + 1, inf = 1e18;
int n, a[sz], dp[sz][sz];
signed main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n;
for(int i = 1; i <= n; i++)
{
cin >> a[i];
a[i] += a[i - 1];
}
// dp[i][j][k] -> ends at i, j blocks
for(int i = 0; i <= n; i++) fill(dp[i], dp[i] + 1 + n, inf);
dp[0][0] = 0;
for(int i = 1; i <= n; i++)
{
for(int j = 1; j <= i; j++)
{
dp[i][j] = dp[i - 1][j];
for(int k = 1; k <= i - (j - 1); k++)
{
// i - (j - 1) >= k
int sm = a[i] - a[i - k];
if(sm >= dp[i - k][j - 1]) dp[i][j] = min(dp[i][j], sm);
}
}
}
int last = -1;
for(int i = 1; i <= n; i++)
{
if(dp[n][i] != inf) last = i;
}
cout << last;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |