# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
310774 | Marlov | Sličice (COCI19_slicice) | C++14 | 81 ms | 1400 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
Code by @marlov
*/
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <iomanip>
#include <utility>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <stack>
#include <queue>
#include <iterator>
using namespace std;
typedef long long ll;
typedef pair<int,int> pi;
#define maxV 505
int N,M,K;
int P[maxV];
int B[maxV];
int dp[maxV][maxV];
int result=0;
int pval(int n){
if(n>=M) return B[M];
return B[n];
}
int main() {
ios_base::sync_with_stdio(0); cin.tie(0);
cin>>N>>M>>K;
for(int i=0;i<N;i++){
cin>>P[i+1];
}
for(int i=0;i<=M;i++){
cin>>B[i];
}
for(int i=1;i<=N;i++){
for(int j=0;j<=K;j++){
for(int z=0;z<=j;z++){
dp[i][j]=max( dp[i][j] , dp[i-1][z]+pval(P[i]+(j-z)) );
}
result=max(result,dp[i][j]);
}
}
cout<<result<<'\n';
return 0;
}
/* stuff you should look for
* int overflow, array bounds
* special cases (n=1,n=0?)
* do smth instead of nothing and stay organized
*/
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |