Time Limit: 20 Sec Memory Limit: 256 MB
题目连接
http://codeforces.com/problemset/problem/148/EDescription
Input
Output
Output the maximal total value of a tantrum of m shrieks.
Sample Input
3 3 7 2
3 4 1 5
Sample Output
15
HINT
题意
有n排花盆,每排有k个,然后有个人想扔m个花瓶,每个花瓶有个价值val
他只能选择每一排的最左边或者最右边扔
求扔的最大价值
题解:
背包问题,bag[i][j]表示第i排扔j个的最大值
代码:
//qscqesze #include <cstdio> #include <cmath> #include <cstring> #include <ctime> #include <iostream> #include <algorithm> #include <set> #include <vector> #include <sstream> #include <queue> #include <typeinfo> #include <fstream> #include <map> #include <stack> typedef long long ll; using namespace std; //freopen("D.in","r",stdin); //freopen("D.out","w",stdout); #define sspeed ios_base::sync_with_stdio(0);cin.tie(0) #define maxn 200001 #define mod 10007 #define eps 1e-9 int Num; char CH[20]; //const int inf=0x7fffffff; //нчоч╢С const int inf=0x3f3f3f3f; /* inline void P(int x) { Num=0;if(!x){putchar('0');puts("");return;} while(x>0)CH[++Num]=x%10,x/=10; while(Num)putchar(CH[Num--]+48); puts(""); } */ inline ll read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } inline void P(int x) { Num=0;if(!x){putchar('0');puts("");return;} while(x>0)CH[++Num]=x%10,x/=10; while(Num)putchar(CH[Num--]+48); puts(""); } //************************************************************************************** int bag[1000][1000]; int t[1000]; int a[1000][1000]; int dp[105][10001]; int main() { int n,m; scanf("%d%d",&n,&m); for(int i=1;i<=n;i++) { scanf("%d",&t[i]); for(int j=1;j<=t[i];j++) { scanf("%d",&a[i][j]); a[i][j]+=a[i][j-1]; } } for(int i=1;i<=n;i++) for(int j=1;j<=t[i];j++) for(int k=0;k<=j;k++) bag[i][j]=max(bag[i][j],a[i][k]+a[i][t[i]]-a[i][t[i]-j+k]); for(int i=1;i<=n;i++) { for(int j=m;j>=0;j--) { for(int k=0;k<=t[i]&&k<=j;k++) { dp[i][j]=max(dp[i][j],dp[i-1][j-k]+bag[i][k]); } } } cout<<dp[n][m]<<endl; }