# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
376294 | joelau | Bigger segments (IZhO19_segments) | C++14 | 1 ms | 364 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
int N,dp[3001][3001];
long long A[500001];
int main() {
scanf("%d", &N);
A[0] = 0;
for (int i = 1; i <= N; ++i) {
scanf("%lld", &A[i]);
A[i] += A[i-1];
}
for (int i = 0; i < N; ++i) {
dp[0][i] = 1;
int n = 0;
for (int j = 1; j <= i; ++j) {
while (n < j && A[i+1] - A[j] >= A[j] - A[n]) n++;
dp[j][i] = dp[j-1][i];
if (n != 0) dp[j][i] = max(dp[j][i],dp[n-1][j-1]+1);
}
}
printf("%d", dp[N-1][N-1]);
return 0;
}
Compilation message (stderr)
# | 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... |