1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| #include <cstdio> #include <algorithm> #include <cstring> #include <string> #include <cmath> #include <iostream> using namespace std; int w[4][101],n,i,j,k; long long ans,now; void in(){ scanf ("%d%d%d",&i,&j,&k),n=i+j+k; for (int t=1;t<=i;t++)scanf ("%d",&w[1][t]); for (int t=1;t<=j;t++)scanf ("%d",&w[2][t]); for (int t=1;t<=k;t++)scanf ("%d",&w[3][t]); } void dfs(int a,int b,int c){ int x; if (a+b+c==0){ if (now>ans)ans=now; return; } x=n-(a+b+c)+1; if (a>0){ now+=w[1][a]*x; dfs(a-1,b,c); now-=w[1][a]*x; } if (b>0){ now+=w[2][b]*x; dfs(a,b-1,c); now-=w[2][b]*x; } if (c>0){ now+=w[3][c]*x; dfs(a,b,c-1); now-=w[3][c]*x; } } int main(){ in(); dfs(i,j,k); printf ("%lld",ans); return 0; }
|