Submission #311830

#TimeUsernameProblemLanguageResultExecution timeMemory
311830nikatamlianiK blocks (IZhO14_blocks)C++14
0 / 100
27 ms35712 KiB
#include <bits/stdc++.h> using namespace std; const int N = 3005, oo = 1e9; int n, k, a[N], dp[N][N]; int main() { cin >> n >> k; for(int i = 1; i <= n; ++i) { cin >> a[i]; } for(int i = 0; i < N; ++i) { for(int j = 0; j < N; ++j) { dp[i][j] = oo; } } stack < int > st; dp[0][0] = 0; for(int i = 1; i <= n; ++i) { while(!st.empty() && a[st.top()] <= a[i]) st.pop(); int x = -1; if(!st.empty()) x = st.top(); for(int j = 1; j <= min(i, k); ++j) { if(~x)dp[i][j] = dp[x][j]; for(int p = x + 1; p < i; ++p) { dp[i][j] = min(dp[i][j], dp[p][j - 1] + a[i]); } } st.push(i); } cout << dp[n][k] << '\n'; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...