Submission #90647

#TimeUsernameProblemLanguageResultExecution timeMemory
90647popovicirobertK blocks (IZhO14_blocks)C++14
0 / 100
11 ms4716 KiB
#include <bits/stdc++.h> #define lsb(x) (x & (-x)) #define ll long long #define ull unsigned long long #define ld long double // 217 // 44 using namespace std; const int INF = 1e9; const int MAXN = (int) 1e5; const int MAXK = 100; int dp[MAXN + 1][MAXK + 1]; int arr[MAXN + 1]; int stk[MAXN + 1]; int mx[MAXN + 1]; int main() { //ifstream cin("A.in"); //ofstream cout("A.out"); int i, j, n, k; ios::sync_with_stdio(false); cin.tie(0), cout.tie(0); cin >> n >> k; for(i = 1; i <= n; i++) { cin >> arr[i]; } for(i = 1; i <= n; i++) { dp[i][1] = max(dp[i - 1][1], arr[i]); } dp[0][1] = INF; for(j = 2; j <= k; j++) { int sz = 0; dp[0][j] = mx[0] = INF; for(i = 1; i <= n; i++) { while(sz > 0 && arr[i] >= arr[stk[sz]]) { sz--; } stk[++sz] = i; mx[sz] = min(mx[sz - 1], arr[i] + dp[max(1, stk[sz - 1])][j - 1]); dp[i][j] = mx[sz]; } } cout << dp[n][k]; //cin.close(); //cout.close(); 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...