Submission #335085

#TimeUsernameProblemLanguageResultExecution timeMemory
335085VROOM_VARUNK blocks (IZhO14_blocks)C++14
0 / 100
28 ms40704 KiB
/* ID: varunra2 LANG: C++ TASK: kblocks */ #include <bits/stdc++.h> using namespace std; #ifdef DEBUG #include "lib/debug.h" #define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__) #define debug_arr(...) \ cerr << "[" << #__VA_ARGS__ << "]:", debug_arr(__VA_ARGS__) #pragma GCC diagnostic ignored "-Wsign-compare" //#pragma GCC diagnostic ignored "-Wunused-parameter" //#pragma GCC diagnostic ignored "-Wunused-variable" #else #define debug(...) 42 #endif #define EPS 1e-9 #define IN(A, B, C) assert(B <= A && A <= C) #define INF (int)1e9 #define MEM(a, b) memset(a, (b), sizeof(a)) #define MOD 1000000007 #define MP make_pair #define PB push_back #define all(cont) cont.begin(), cont.end() #define rall(cont) cont.end(), cont.begin() #define x first #define y second const double PI = acos(-1.0); typedef long long ll; typedef long double ld; typedef pair<int, int> PII; typedef map<int, int> MPII; typedef multiset<int> MSETI; typedef set<int> SETI; typedef set<string> SETS; typedef vector<int> VI; typedef vector<PII> VII; typedef vector<VI> VVI; typedef vector<string> VS; #define rep(i, a, b) for (int i = a; i < (b); ++i) #define trav(a, x) for (auto& a : x) #define sz(x) (int)(x).size() typedef pair<int, int> pii; typedef vector<int> vi; #pragma GCC diagnostic ignored "-Wsign-compare" // util functions const int MAXN = 1e5 + 2, K = 18, MAXK = 102; int n, k, vals[MAXN], lft[MAXN], lg2[MAXN + 1], st[MAXN][K + 1], dp[MAXK][MAXN] = {}; void init() {} void calc(int ind) { for (int i = 0; i < n; i++) st[i][0] = dp[ind][i]; for (int i = 0; i <= n; i++) for (int j = 1; i + (1 << j) <= n; j++) st[i][j] = min(st[i][j - 1], st[i + (1 << (j - 1))][j - 1]); } int qry(int L, int R) { int j = lg2[R - L + 1]; return min(st[L][j], st[R - (1 << j) + 1][j]); } int main() { cin.sync_with_stdio(0); cin.tie(0); cin >> n >> k; lg2[1] = 0; for (int i = 2; i <= MAXN; i++) lg2[i] = lg2[i / 2] + 1; for (int i = 1; i <= n; i++) { cin >> vals[i]; } rep(i, 0, MAXK) rep(j, 0, MAXN) dp[i][j] = INF; dp[0][0] = 0; calc(0); stack<int> st; vals[0] = INF; st.push(0); for (int i = 1; i <= n; i++) { while (vals[st.top()] <= vals[i]) st.pop(); lft[i] = st.top(); st.push(i); } for (int i = 1; i <= k; i++) { for (int j = 1; j <= n; j++) { dp[i][j] = min(qry(lft[j], j - 1) + vals[j], dp[i][lft[j]]); } calc(i); } cout << dp[k][n] << '\n'; 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...