제출 #376294

#제출 시각아이디문제언어결과실행 시간메모리
376294joelauBigger segments (IZhO19_segments)C++14
0 / 100
1 ms364 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];
    }
    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;
}

컴파일 시 표준 에러 (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...