#include<bits/stdc++.h>
#define F first
#define S second
#define pb push_back
#define int long long
using namespace std;
int dp[505][505],a[505],b[505];
main()
{
int n,m,kk;
cin>>n>>m>>kk;
for(int i=0;i<=500;i++)
for(int j=0;j<=500;j++)
dp[i][j]=-1e18;
for(int i=0;i<n;i++)
cin>>a[i];
for(int i=0;i<=m;i++)
cin>>b[i];
dp[0][kk]=b[a[0]];
for(int i=a[0];i<=m;i++){
if(kk-(i-a[0])<0)
continue;
dp[0][kk-(i-a[0])]=max(dp[0][kk-(i-a[0])],b[i]);
}
for(int i=0;i<n;i++){
for(int j=0;j<=kk;j++){
for(int k=a[i+1];k<=m;k++){
int x=j-(k-a[i+1]);
if(x<0)
continue;
dp[i+1][x]=max(dp[i+1][x],dp[i][j]+b[k]);
}
}
}
int ans=-1e18;
for(int i=0;i<=kk;i++)
ans=max(ans,dp[n-1][i]);
cout<<ans<<endl;
return 0;
}
Compilation message
slicice.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
8 | main()
| ^~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2260 KB |
Output is correct |
2 |
Correct |
2 ms |
2260 KB |
Output is correct |
3 |
Correct |
58 ms |
2264 KB |
Output is correct |
4 |
Correct |
58 ms |
2276 KB |
Output is correct |
5 |
Correct |
59 ms |
2272 KB |
Output is correct |
6 |
Correct |
57 ms |
2264 KB |
Output is correct |
7 |
Correct |
56 ms |
2268 KB |
Output is correct |
8 |
Correct |
62 ms |
2260 KB |
Output is correct |
9 |
Correct |
56 ms |
2260 KB |
Output is correct |
10 |
Correct |
58 ms |
2260 KB |
Output is correct |