# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
100313 | tpoppo | Sličice (COCI19_slicice) | C++14 | 5 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 505;
int n,m,k;
int b[MAXN];
int v[MAXN];
int dp[MAXN][MAXN];
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
freopen("in.txt","r",stdin);
cin >> n >> m >> k;
for(int i=0;i<n;i++) cin >> v[i];
for(int i=0;i<=m;i++) cin >> b[i];
for(int i=0;i<n;i++){
for(int t=0;t<=k;t++){
//cout<<dp[i][t]<<" ";
for(int j=0;j + v[i] <= m && j <= t;j++){
dp[i+1][t-j] = max(dp[i+1][t - j], dp[i][t] + b[v[i] + j] );
}
}//cout<<endl;
}
int rs = 0;
for(int i=0;i<=m;i++) rs = max(rs,dp[n][i]);
// cout<<i<<": "<<dp[n][i]<<'\n';
cout<<rs<<'\n';
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |