#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main()
{
int n; cin >> n;
vector<int> a(n + 1), pref(n + 1);
for (int i = 1; i<= n; i++){
cin >> a[i];
pref[i] = pref[i - 1] + a[i];
}
vector<vector<int>> dp(n + 1, vector<int> (n + 1, 0));
dp[0][0] = 0;
for (int i = 1; i <= n; i++){
dp[i][1] = pref[i];
}
for (int j = 2; j <= n; j++){
for (int i = j; i <= n; i++){
int ini = 1, fin = i;
while(ini < fin){
int m = (ini + fin) / 2;
if (i == 3 && j == 3){
cout << m << ' ' << pref[i] << ' ' << dp[m][j - 1] << ' ' << pref[m] << endl;
}
if (pref[i] >= dp[m][j - 1] + pref[m]){
ini = m + 1;
}else{
fin = m;
}
}
ini--;
int suma = pref[i] - pref[ini];
if (suma >= dp[ini][j - 1] && dp[ini][j - 1]) dp[i][j] = suma;
}
}
/*for (int i = 0; i <= n; i++){
for (int j = 0; j <= n; j++){
cout << dp[i][j] << ' ';
}
cout << endl;
}*/
int ans = 1;
for (int i = 1; i <= n; i++){
if (dp[n][i]) ans = max(ans, i);
}
cout << ans << endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |