Submission #341700

#TimeUsernameProblemLanguageResultExecution timeMemory
341700phathnvPopeala (CEOI16_popeala)C++11
0 / 100
2 ms492 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int T = 4001; const int N = 51; const int S = 51; const int INF = 2e9 + 10; int n, t, s, p[N], cost[N][N], dp[S][T]; string a[N]; void ReadInput(){ cin >> n >> t >> s; for(int i = 1; i <= t; i++) cin >> p[i]; for(int i = 1; i <= n; i++){ cin >> a[i]; a[i] = '*' + a[i]; } } int Cost(int l, int r){ int sum = 0, cnt = 0; for(int i = l; i <= r; i++) sum += p[i]; for(int i = 1; i <= n; i++){ bool flag = 0; for(int j = l; j <= r; j++) if (a[i][j] == '0'){ flag = 1; break; } if (!flag) cnt++; } return sum * cnt; } void Calc(int id, int l, int r, int from, int to){ if (l > r) return; int mid = (l + r) >> 1, pos = -1; dp[id][mid] = INF; for(int i = from; i <= min(mid, to); i++){ int val = dp[id - 1][i - 1] + Cost(i, mid); if (dp[id][mid] > val){ dp[id][mid] = val; pos = i; } } Calc(id, l, mid - 1, from, pos); Calc(id, mid + 1, r, pos, to); } void Solve(){ for(int i = 1; i <= t; i++) dp[1][i] = Cost(1, i); for(int i = 2; i <= s; i++) Calc(i, i, t, i, t); for(int i = 1; i <= s; i++) cout << dp[i][t] << '\n'; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); ReadInput(); Solve(); return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...