# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
154382 | arnold518 | 조교 (CEOI16_popeala) | C++14 | 2037 ms | 8568 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 50;
const int MAXT = 20000;
const ll INF = 1e15;
int N, T, S, P[MAXT+10], R[MAXN+10][MAXT+10];
vector<int> V[MAXT+10];
int cnt[MAXN+10];
ll dp[MAXN+10][MAXT+10];
int main()
{
int i, j, k, p;
scanf("%d%d%d", &N, &T, &S);
for(i=1; i<=T; i++) scanf("%d", &P[i]), P[i]+=P[i-1];
for(i=1; i<=N; i++) for(j=1; j<=T; j++) scanf("%1d", &R[i][j]);
for(i=1; i<=T; i++)
{
for(j=1; j<=N; j++) if(R[j][i]==0) cnt[j]=i;
for(j=1; j<=N; j++) V[i].push_back(cnt[j]);
V[i].push_back(i); V[i].push_back(0);
sort(V[i].begin(), V[i].end());
//for(j=0; j<=N+1; j++) printf("%d ", V[i][j]); printf("\n");
}
for(i=0; i<=S; i++) for(j=0; j<=T; j++) dp[i][j]=INF;
dp[0][0]=0;
for(i=1; i<=S; i++)
{
for(k=0; k<=N; k++)
{
for(j=1; j<=T; j++)
{
ll now=INF;
for(p=V[j][k]; p<V[j][k+1]; p++) now=min(now, dp[i-1][p]+k*P[j]-k*P[p]);
dp[i][j]=min(dp[i][j], now);
}
}
}
for(i=1; i<=S; i++) printf("%lld\n", dp[i][T]);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |