Submission #922683

#TimeUsernameProblemLanguageResultExecution timeMemory
922683penguin133K blocks (IZhO14_blocks)C++17
0 / 100
2 ms10588 KiB
#include <bits/stdc++.h> using namespace std; #define int long long #define pi pair<int, int> #define pii pair<int, pi> #define fi first #define se second #ifdef _WIN32 #define getchar_unlocked _getchar_nolock #endif mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); struct node{ int s, e, m, val, lz; node *l, *r; node(int _s, int _e){ s = _s, e = _e, m = (s + e) >> 1; if(s != e)l = new node(s, m), r = new node(m+1, e); val = lz = 0; } void prop(){ if(lz){ val += lz; if(s != e)l->lz += lz, r->lz += lz; lz = 0; } } void upd(int a, int b, int c){ if(a == s && b == e)lz += c; else{ if(b <= m)l->upd(a, b, c); else if(a > m)r->upd(a, b, c); else l->upd(a, m, c), r->upd(m+1, b, c); l->prop(), r->prop(); val = min(l->val, r->val); } } int qry(int a, int b){ prop(); if(a == s && b== e)return val; else if(b <= m)return l->qry(a, b); else if(a > m)return r->qry(a ,b); else return min(l->qry(a, m), r->qry(m+1, b)); } void clr(){ val = lz = 0; if(s != e)l->clr(), r->clr(); } }*root; int A[100005], dp[105][100005], mn[105][100005]; void solve(){ int n, k; cin >> n >> k; for(int i=1;i<=n;i++)cin >> A[i]; root = new node(1, n); for(int i=1;i<=k;i++)dp[i][0] = 1e18; for(int i=1;i<=n;i++)dp[0][i] = 1e18; for(int i=1;i<=k;i++){ stack <int> s; //root->clr(); for(int j=1;j<=n;j++){ int prv = j - 1; dp[i][j] = dp[i-1][j-1] + A[j]; //root->upd(j, j, dp[i - 1][j - 1] + A[j]); while(!s.empty() && A[s.top()] <= A[j]){ int x = s.top(); s.pop(); prv = x; int nxt = (s.empty() ? 0 : s.top()); nxt = max(nxt, i - 1); if(i <= j)dp[i][j] = min(dp[i][j], dp[i-1][nxt] + A[j]); //cout << nxt + 1 << ' ' << x << ' ' << A[j] - A[x] << '\n'; //root->upd(nxt + 1, x, A[j] - A[x]); } if(!s.empty())dp[i][j] = min(dp[i][j], dp[i][s.top()]); //dp[i][j] = root->qry(1, j); //cout << dp[i][j] << ' '; s.push(j); } mn[i][n] = dp[i][n]; for(int j=n-1;j>=0;j--)mn[i][j] = min(dp[i][j], mn[i][j+1]); //cout << '\n'; } cout << dp[k][n]; } main(){ ios::sync_with_stdio(0);cin.tie(0); int tc = 1; //cin >> tc; for(int tc1=1;tc1<=tc;tc1++){ // cout << "Case #" << tc1 << ": "; solve(); } }

Compilation message (stderr)

blocks.cpp: In function 'void solve()':
blocks.cpp:67:8: warning: variable 'prv' set but not used [-Wunused-but-set-variable]
   67 |    int prv = j - 1;
      |        ^~~
blocks.cpp: At global scope:
blocks.cpp:92:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   92 | main(){
      | ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...