/*
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 time |
Memory |
Grader output |
1 |
Correct |
26 ms |
40684 KB |
Output is correct |
2 |
Correct |
27 ms |
40684 KB |
Output is correct |
3 |
Correct |
26 ms |
40684 KB |
Output is correct |
4 |
Correct |
26 ms |
40684 KB |
Output is correct |
5 |
Correct |
28 ms |
40684 KB |
Output is correct |
6 |
Correct |
26 ms |
40684 KB |
Output is correct |
7 |
Correct |
26 ms |
40684 KB |
Output is correct |
8 |
Incorrect |
26 ms |
40684 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
26 ms |
40684 KB |
Output is correct |
2 |
Correct |
28 ms |
40684 KB |
Output is correct |
3 |
Correct |
26 ms |
40684 KB |
Output is correct |
4 |
Correct |
26 ms |
40636 KB |
Output is correct |
5 |
Correct |
28 ms |
40684 KB |
Output is correct |
6 |
Correct |
26 ms |
40704 KB |
Output is correct |
7 |
Correct |
26 ms |
40684 KB |
Output is correct |
8 |
Incorrect |
26 ms |
40696 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
26 ms |
40684 KB |
Output is correct |
2 |
Correct |
27 ms |
40684 KB |
Output is correct |
3 |
Correct |
26 ms |
40684 KB |
Output is correct |
4 |
Correct |
26 ms |
40684 KB |
Output is correct |
5 |
Correct |
28 ms |
40684 KB |
Output is correct |
6 |
Correct |
26 ms |
40684 KB |
Output is correct |
7 |
Correct |
26 ms |
40684 KB |
Output is correct |
8 |
Incorrect |
26 ms |
40684 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
26 ms |
40684 KB |
Output is correct |
2 |
Correct |
27 ms |
40684 KB |
Output is correct |
3 |
Correct |
26 ms |
40684 KB |
Output is correct |
4 |
Correct |
26 ms |
40684 KB |
Output is correct |
5 |
Correct |
28 ms |
40684 KB |
Output is correct |
6 |
Correct |
26 ms |
40684 KB |
Output is correct |
7 |
Correct |
26 ms |
40684 KB |
Output is correct |
8 |
Incorrect |
26 ms |
40684 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |