#include <bits/stdc++.h>
#define lsb(x) (x & (-x))
#define ll long long
#define ull unsigned long long
#define ld long double
// 217
// 44
using namespace std;
const int INF = 2e9;
const int MAXN = 50;
const int MAXT = 20000;
int pts[MAXT + 1], sp[MAXT + 1];
char res[MAXN + 1][MAXT + 1];
int L[MAXN + 1][MAXT + 1];
struct SegTree {
vector <int> aint;
int n;
inline void init(int _n) {
n = _n;
aint.resize(4 * n + 1);
}
inline void clr() {
fill(aint.begin(), aint.end(), INF);
}
inline void refresh(int nod) {
aint[nod] = min(aint[2 * nod], aint[2 * nod + 1]);
}
void update(int nod, int left, int right, int pos, int val) {
if(left == right) {
aint[nod] = val;
}
else {
int mid = (left + right) / 2;
if(pos <= mid) update(2 * nod, left, mid, pos, val);
else update(2 * nod + 1, mid + 1, right, pos, val);
refresh(nod);
}
}
int query(int nod, int left, int right, int l, int r) {
if(l <= left && right <= r) {
return aint[nod];
}
else {
int mid = (left + right) / 2;
int ans = INF;
if(l <= mid) ans = min(ans, query(2 * nod, left, mid, l, r));
if(mid < r) ans = min(ans, query(2 * nod + 1, mid + 1, right, l, r));
return ans;
}
}
};
int dp[2][MAXT + 1], pos[MAXN + 1];
int main() {
//ifstream cin("A.in");
//ofstream cout("A.out");
int i, j, n, t, s;
ios::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
cin >> n >> t >> s;
for(i = 1; i <= t; i++) {
cin >> pts[i];
sp[i] = sp[i - 1] + pts[i];
}
for(i = 1; i <= n; i++) {
cin >> res[i] + 1;
res[i][0] = 0;
for(j = 1; j <= t; j++) {
res[i][j] -= '0';
if(res[i][j - 1] == 0) {
L[i][j] = j;
}
else {
L[i][j] = L[i][j - 1];
}
}
}
vector < SegTree > st(n + 1);
for(i = 0; i <= n; i++) {
st[i].init(t);
}
for(i = 1; i <= n; i++) {
dp[0][i] = INF;
}
for(int k = 1; k <= s; k++) {
for(j = 0; j <= n; j++) {
st[j].clr();
}
dp[k & 1][0] = INF;
for(i = 0; i <= t; i++) {
for(j = 0; j <= n; j++) {
st[j].update(1, 0, t, i, dp[1 - k & 1][i] - sp[i] * j);
//cerr << dp[1 - k & 1][i] - sp[i] * j << " ";
}
//cerr << "\n";
}
//cerr << "\n";
for(i = 1; i <= t; i++) {
int sz = 0;
for(j = 1; j <= n; j++) {
if(res[j][i] == 1) {
pos[++sz] = L[j][i];
}
}
sort(pos + 1, pos + sz + 1, greater<int>());
dp[k & 1][i] = INF;
int last = i - 1;
j = 1;
while(j <= sz) {
int p = j;
while(p <= sz && pos[j] == pos[p]) {
p++;
}
if(pos[j] - 1 <= last) {
dp[k & 1][i] = min(dp[k & 1][i], st[sz - j + 1].query(1, 0, t, pos[j] - 1, last) + sp[i] * (sz - j + 1));
/*if(k == 1 && i == 1) {
cerr << dp[k & 1][i] << " ";
}*/
}
last = pos[j] - 2;
j = p;
}
if(last >= 0) {
dp[k & 1][i] = min(dp[k & 1][i], st[0].query(1, 0, t, 0, last));
}
//cerr << dp[k & 1][i] << " ";
}
//cerr << "\n";
cout << dp[k & 1][t] << "\n";
}
//cin.close();
//cout.close();
return 0;
}
Compilation message
popeala.cpp: In function 'int main()':
popeala.cpp:79:23: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
cin >> res[i] + 1;
~~~~~~~^~~
popeala.cpp:105:47: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
st[j].update(1, 0, t, i, dp[1 - k & 1][i] - sp[i] * j);
~~^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
292 KB |
Output is correct |
2 |
Incorrect |
3 ms |
632 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
144 ms |
1356 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
613 ms |
3192 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
292 KB |
Output is correct |
2 |
Incorrect |
3 ms |
632 KB |
Output isn't correct |