# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
52948 |
2018-06-27T08:30:25 Z |
노영훈(#1382) |
조교 (CEOI16_popeala) |
C++11 |
|
2000 ms |
31888 KB |
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int MX=4010, inf=2e9+10;
int n, t, s;
int P[MX];
bool R[51][MX];
ll D[51][MX];
int score[MX][MX];
void init(){
for(int i=0; i<=s; i++)
for(int j=0; j<=t; j++)
D[i][j]=-1;
for(int i=1; i<=s; i++)
D[i][0]=inf;
for(int i=1; i<=t; i++)
D[0][i]=inf;
D[0][0]=0;
int S[MX]={};
for(int i=1; i<=t; i++) S[i]=S[i-1]+P[i];
for(int l=1; l<=t; l++){
bool B[51];
for(int i=1; i<=n; i++) B[i]=true;
for(int r=l; r<=t; r++){
int sum=S[r]-S[l-1];
for(int i=1; i<=n; i++)
B[i]&=R[i][r], score[l][r]+=(B[i]?sum:0);
}
}
}
ll d(int k, int r){
ll &res=D[k][r];
if(res>=0) return res;
res=inf;
for(int x=r; x>=1; x--){
ll now=d(k-1, x-1) + score[x][r];
if(now<=res) res=now;
}
return res;
}
int main(){
ios::sync_with_stdio(0); cin.tie(0);
cin>>n>>t>>s;
for(int i=1; i<=t; i++)
cin>>P[i];
for(int i=1; i<=n; i++)
for(int j=1; j<=t; j++){
char c; cin>>c;
R[i][j]=(c=='1');
}
init();
/*
for(int i=0; i<=s; i++, cout<<'\n')
for(int j=0; j<=t; j++)
cout<<d(i,j)<<' ';
for(int i=1; i<=s; i++)
cout<<D[i][t]<<'\n';
*/
for(int i=1; i<=s; i++)
cout<<d(i,t)<<'\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
868 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
39 ms |
3636 KB |
Output is correct |
2 |
Correct |
36 ms |
3684 KB |
Output is correct |
3 |
Correct |
36 ms |
3684 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1137 ms |
20228 KB |
Output is correct |
2 |
Execution timed out |
2069 ms |
31888 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
868 KB |
Output is correct |
3 |
Correct |
39 ms |
3636 KB |
Output is correct |
4 |
Correct |
36 ms |
3684 KB |
Output is correct |
5 |
Correct |
36 ms |
3684 KB |
Output is correct |
6 |
Correct |
1137 ms |
20228 KB |
Output is correct |
7 |
Execution timed out |
2069 ms |
31888 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |