# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
91320 | 2018-12-27T05:44:45 Z | Just_Solve_The_Problem | K개의 묶음 (IZhO14_blocks) | C++11 | 399 ms | 3500 KB |
#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]; struct sparse { int table[19][N]; int numlog[N]; void build() { for (int i = 2; i < N; i++) { numlog[i] = numlog[i / 2] + 1; } for (int i = 0; i <= 17; i++) { for (int j = 1; j <= n; j++) { if (!i) { table[i][j] = a[j]; } else { table[i][j] = max(table[i - 1][j], table[i - 1][j + (1 << (i - 1))]); } } } } int getmax(int l, int r) { int lg = numlog[r - l + 1]; return max(table[lg][l], table[lg][r - (1 << lg) + 1]); } }; sparse table; void div(int id, int l, int r, int optl, int optr) { if (l > r) return ; int mid = (l + r) >> 1; int &res = dp[id][mid]; res = inf; int opt = optl; for (int i = optl; i <= min(mid, optr); i++) { int cost = table.getmax(i, mid); if (dp[id ^ 1][i - 1] + cost < res) { res = dp[id ^ 1][i - 1] + cost; opt = i; } } div(id, l, mid - 1, optl, opt); div(id, mid + 1, r, opt, optr); } int opt[N]; main() { scanf("%d %d", &n, &k); for (int i = 1; i <= n; i++) { scanf("%d", &a[i]); } table.build(); for (int i = 1; i <= n; i++) { dp[1][i] = max(dp[1][i - 1], a[i]); } for (int i = 2; i <= k; i++) { for (int j = 1; j < i; j++) { opt[j] = 0; } for (int j = i; j <= n; j++) { int &res = dp[i & 1][j]; res = inf; for (int l = i - 1; l < j; l++) { int cost = table.getmax(l + 1, j) + dp[i & 1 ^ 1][l]; if (cost <= res) { res = cost; opt[j] = l; } } assert(opt[j - 1] <= opt[j]); } } cout << dp[k & 1][n]; } /* 10 6 3 | 9 5 8 | 7 | 3 | 8 6 10 | 2 10 6 3 9 5 8 7 3 8 6 10 2 ans = 34 */
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 760 KB | Output is correct |
2 | Correct | 3 ms | 1012 KB | Output is correct |
3 | Correct | 2 ms | 1012 KB | Output is correct |
4 | Correct | 2 ms | 1012 KB | Output is correct |
5 | Correct | 2 ms | 1012 KB | Output is correct |
6 | Correct | 2 ms | 1012 KB | Output is correct |
7 | Correct | 3 ms | 1012 KB | Output is correct |
8 | Correct | 0 ms | 1012 KB | Output is correct |
9 | Runtime error | 4 ms | 1696 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
10 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 1696 KB | Output is correct |
2 | Correct | 0 ms | 1696 KB | Output is correct |
3 | Correct | 2 ms | 1696 KB | Output is correct |
4 | Correct | 2 ms | 1716 KB | Output is correct |
5 | Correct | 2 ms | 1716 KB | Output is correct |
6 | Correct | 2 ms | 1716 KB | Output is correct |
7 | Correct | 2 ms | 1716 KB | Output is correct |
8 | Correct | 2 ms | 1716 KB | Output is correct |
9 | Runtime error | 3 ms | 1832 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
10 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 1832 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 399 ms | 3500 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |