Submission #916563

#TimeUsernameProblemLanguageResultExecution timeMemory
916563penguin133K blocks (IZhO14_blocks)C++17
53 / 100
1040 ms82524 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]; 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; root->upd(j, j, (j < i ? 1e18 : 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()); //cout << nxt + 1 << ' ' << x << ' ' << A[j] - A[x] << '\n'; root->upd(nxt + 1, x, A[j] - A[x]); } dp[i][j] = (j < i ? 1e18 : root->qry(1, j)); //cout << dp[i][j] << ' '; s.push(j); } //cout << '\n'; */ for(int j=1;j<=n;j++){ int mx = A[j]; dp[i][j] = 1e18; for(int kk=j;kk>=1;kk--){ mx = max(mx, A[kk]); dp[i][j] = min(dp[i][j], dp[i-1][kk-1] + mx); } } } 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:94:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   94 | 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...