Submission #376326

#TimeUsernameProblemLanguageResultExecution timeMemory
376326joelauBigger segments (IZhO19_segments)C++14
0 / 100
20 ms35564 KiB
#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];
    }
    memset(dp,-1,sizeof(dp));
    for (int i = 0; i < N; ++i) {
        dp[i][0] = 1;
        int n = 0;
        for (int j = 1; j <= i; ++j) {
            while (n < j && A[i+1] - A[j] < A[j] - A[n]) n++;
            if (dp[j-1][n] == -1) dp[i][j] = -1;
            else dp[i][j] = dp[j-1][n] + 1;
        }
        for (int j = i-1; j >= 0; --j) dp[i][j] = max(dp[i][j],dp[i][j+1]);
    }
    printf("%d", dp[N-1][N-1]);

    return 0;
}

Compilation message (stderr)

segments.cpp: In function 'int main()':
segments.cpp:8:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
    8 |     scanf("%d", &N);
      |     ~~~~~^~~~~~~~~~
segments.cpp:11:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   11 |         scanf("%lld", &A[i]);
      |         ~~~~~^~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...