Submission #95429

#TimeUsernameProblemLanguageResultExecution timeMemory
95429choikiwonK blocks (IZhO14_blocks)C++17
0 / 100
9 ms1144 KiB
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; const int MN = 100010; int B[MN]; int N, K; int A[MN]; ll dp[2][MN]; int main() { int p = 0; for(int i = 1; i < MN; i++) { if(i == (1 << (p + 1))) p++; B[i] = p; } scanf("%d %d", &N, &K); for(int i = 0; i < N; i++) { scanf("%d", &A[i]); } for(int i = N - 1; i >= 0; i--) { dp[1][i] = A[i]; dp[1][i] = max(dp[1][i], dp[1][i + 1]); } dp[1][N] = 1e18; for(int i = 2; i <= K; i++) { int p = (i & 1) ^ 1; int c = (i & 1); stack<pair<ll, int> > stk1, stk2; for(int j = N - 1; j >= 0; j--) { while(!stk1.empty() && stk1.top().first <= A[j]) { stk1.pop(); } int t = stk1.empty()? N : stk1.top().second; while(!stk2.empty() && stk2.top().second < t) { stk2.pop(); } stk1.push({A[j], j}); if(stk2.empty() || stk2.top().first > dp[p][t] + A[j]) { stk2.push({dp[p][t] + A[j], j}); } dp[c][j] = stk2.top().first; } } printf("%lld", dp[K & 1][0]); }

Compilation message (stderr)

blocks.cpp: In function 'int main()':
blocks.cpp:22:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d", &N, &K);
     ~~~~~^~~~~~~~~~~~~~~~~
blocks.cpp:25:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &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...