# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
52957 |
2018-06-27T08:55:43 Z |
윤교준(#1384) |
Popeala (CEOI16_popeala) |
C++11 |
|
268 ms |
10184 KB |
#include <bits/stdc++.h>
#define rf(x) (x)=0;while(*p<48)p++;while(47<*p)(x)=((x)<<3)+((x)<<1)+(*p++&15);
#define pb push_back
#define eb emplace_back
#define sz(V) ((int)(V).size())
#define allv(V) ((V).begin()),((V).end())
#define sorv(V) sort(allv(V))
#define upmin(a,b) (a)=min((a),(b))
#define INF (0x3f3f3f3f)
#define INFLL (0x3f3f3f3f3f3f3f3fll)
using namespace std;
typedef unsigned int ui;
typedef long long ll;
typedef pair<int, int> pii;
static unsigned char str[55000055], *p=str;
const int MAXT = 20005;
const int MAXN = 55;
const int MAXK = 55;
const int MX = 32768;
struct SEG {
int d[MX*2];
int A[MX];
void upd(int x, int r) {
A[x] = r; x += MX; d[x] = r;
for(x /= 2; x; x /= 2)
d[x] = d[x*2] < d[x*2+1] ? d[x*2] : d[x*2+1];
}
int get(int s, int e) {
int r = INF*2;
if(e-s < 20) {
for(int i = s; i <= e; i++)
if(A[i] < r) r = A[i];
return r;
}
for(s += MX, e += MX; s <= e; s /= 2, e /= 2) {
if(s&1) {
if(d[s] < r) r = d[s];
s++;
}
if(~e&1) {
if(d[e] < r) r = d[e];
e--;
}
} return r;
}
} seg[MAXN];
vector<pii> VC[MAXT];
ui dp[MAXK][MAXT];
int BL[MAXN][MAXT];
bool B[MAXN][MAXT];
int S[MAXT];
int A[MAXT];
int N, T, K;
int main() {
fread(str, 1, 55000055, stdin);
rf(N) rf(T) rf(K)
for(int i = 1; i <= T; i++) { rf(A[i]) }
for(int i = 1; i <= N; i++) {
for(int j = 1; j <= T; j++) {
while(*p<48)p++;
B[i][j] = (bool)(*p++ == '1');
}
}
for(int i = 1; i <= T; i++)
S[i] = S[i-1] + A[i];
for(int i = 1; i <= N; i++) {
for(int j = 1; j <= T; j++) {
if(!B[i][j]) continue;
BL[i][j] = B[i][j-1] ? BL[i][j-1] : j;
}
}
for(int i = 1; i <= T; i++) {
vector<int> V;
for(int j = 1; j <= N; j++)
if(BL[j][i]) V.pb(BL[j][i]);
sorv(V);
for(; !V.empty();) {
int c = V.back(), n = sz(V);
for(; !V.empty() && V.back() == c; V.pop_back());
VC[i].eb(c, n);
}
VC[i].eb(1, 0);
}
for(int i = 0; i < MAXK; i++)
fill(dp[i], dp[i]+MAXT, INF*2);
dp[0][0] = 0;
for(int j = 1; j <= K; j++) {
for(int c = 0; c <= N; c++) {
for(int i = j-1; i <= T; i++) {
seg[c].upd(i, dp[j-1][i] - S[i]*c);
}
}
for(int i = j; i <= T; i++) {
ui t = INF*2;
for(int k = 0; k < sz(VC[i]); k++) {
int s = VC[i][k].first, e = k ? VC[i][k-1].first-1 : i, c = VC[i][k].second;
s = max(s-1, j-1); e--;
if(s > e) continue;
ui ret = j > N ? seg[c].get(s, e) + S[i] * c : dp[j-1][s] - S[s]*c + S[i]*c;
if(ret < t) t = ret;
}
dp[j][i] = t;
}
}
for(int i = 1; i <= K; i++)
printf("%u\n", dp[i][T]);
return 0;
}
Compilation message
popeala.cpp: In function 'int main()':
popeala.cpp:64:7: warning: ignoring return value of 'size_t fread(void*, size_t, size_t, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
fread(str, 1, 55000055, stdin);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
5240 KB |
Output is correct |
2 |
Incorrect |
7 ms |
6628 KB |
Output isn't correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
66 ms |
8216 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
268 ms |
10184 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
5240 KB |
Output is correct |
2 |
Incorrect |
7 ms |
6628 KB |
Output isn't correct |