# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
314120 | phathnv | Sličice (COCI19_slicice) | C++11 | 66 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define mp make_pair
#define X first
#define Y second
#define taskname "SLCICE"
using namespace std;
typedef long long ll;
typedef pair <int, int> ii;
const int N = 501;
int n, m, k, p[N], b[N], dp[2][N];
void readInput(){
cin >> n >> m >> k;
for(int i = 1; i <= n; i++)
cin >> p[i];
for(int i = 0; i <= m; i++)
cin >> b[i];
}
void solve(){
for(int i = 1; i <= n; i++){
int id = i & 1;
for(int j = p[i]; j <= m; j++)
for(int c = 0; c <= k; c++){
if (c + j - p[i] > k)
break;
dp[id][c + j - p[i]] = max(dp[id][c + j - p[i]], dp[id ^ 1][c] + b[j]);
}
}
cout << dp[n & 1][k];
}
int main(){
if (fopen(taskname".inp", "r")){
freopen(taskname".inp", "r", stdin);
freopen(taskname".out", "w", stdout);
}
readInput();
solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |