# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
703923 | chenyan | Sličice (COCI19_slicice) | C++17 | 49 ms | 332 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int,int>
#define ff first
#define ss second
#define all(x) x.begin(),x.end()
#define pb emplace_back
#define N 510
int dp[N],a[N],b[N];
signed main(){
ios::sync_with_stdio(0);
cin.tie(0);
int n,m,i,k,j,u,v;
cin>>n>>m>>k;
for(i=1;i<=n;i++)cin>>a[i];
for(i=0;i<=m;i++)cin>>b[i];
for(i=1;i<=n;i++){
for(v=k;v>=0;v--)for(j=0;j<=min(m-a[i],v);j++){
dp[v]=max(dp[v],dp[v-j]+b[a[i]+j]);
}
}
cout<<dp[k]<<'\n';
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |