# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
91380 | Just_Solve_The_Problem | K개의 묶음 (IZhO14_blocks) | C++11 | 168 ms | 13668 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int N = (int)1e5 + 7;
const int inf = (int)1e9 + 7;
int n, k;
int dp[2][N];
int a[N];
main() {
scanf("%d %d", &n, &k);
for (int i = 1; i <= n; i++) {
scanf("%d", &a[i]);
}
stack < pair < int, int > > st;
for (int i = 1; i <= n; i++) {
dp[1][i] = max(dp[1][i - 1], a[i]);
}
for (int i = 2; i <= k; i++) {
while (!st.empty()) st.pop();
st.push({dp[i & 1 ^ 1][i - 1], a[i]});
dp[i & 1][i] = dp[i & 1 ^ 1][i - 1] + a[i];
for (int j = i + 1; j <= n; j++) {
int c = dp[i & 1 ^ 1][j - 1];
while (!st.empty() && st.top().second <= a[j]) {
c = min(c, st.top().first);
st.pop();
}
if (st.empty() || st.top().first + st.top().second > c + a[j]) {
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |