Submission #918480

#TimeUsernameProblemLanguageResultExecution timeMemory
918480n3rm1nK blocks (IZhO14_blocks)C++17
0 / 100
1 ms2396 KiB
#include<bits/stdc++.h> #define endl '\n' using namespace std; const int MAXN = 1e5 + 10, MAXK = 105; void speed() { ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); } int n, k, a[MAXN]; void read() { cin >> n >> k; for (int i = 1; i <= n; ++ i) cin >> a[i]; } int dp[MAXN][MAXK]; void solve() { int inf = 1e9; for (int j = 1; j <= k; ++ j) { stack < pair <int, int > > t; for (int i = j; i <= n; ++ i) { dp[i][j] = inf; dp[i][j] = dp[i-1][j-1] + a[i]; int init = dp[i][j]; while(!t.empty()) { int sz = t.top().first; int dpp = t.top().second; if(sz < a[i]) { if(dpp + a[i] - sz < init)dp[i][j] = dpp + a[i] - sz; t.pop(); } else break; } if(t.size() == 0 || t.top().second > dp[i][j])t.push(make_pair(a[i], dp[i][j])); else dp[i][j] = min(dp[i][j], t.top().second); //cout << i << " " << j << " --> " << dp[i][j] << endl; } } cout << dp[n][k] << endl; } int main() { speed(); read(); solve(); return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...