【动态规划】XMU 1028 Game Boy Advance

题目链接:

  http://acm.xmu.edu.cn/JudgeOnline/problem.php?id=1028

题目大意

  求01背包最优解的方案。物件数和物件编号。

题目思路:

  【动态规划】

  经典背包DP。

  最后倒推求方案

 1 //
 2 //by coolxxx
 3 //
 4 #include<iostream>
 5 #include<algorithm>
 6 #include<string>
 7 #include<iomanip>
 8 #include<memory.h>
 9 #include<time.h>
10 #include<stdio.h>
11 #include<stdlib.h>
12 #include<string.h>
13 //#include<stdbool.h>
14 #include<math.h>
15 #define min(a,b) ((a)<(b)?(a):(b))
16 #define max(a,b) ((a)>(b)?(a):(b))
17 #define abs(a) ((a)>0?(a):(-(a)))
18 #define lowbit(a) (a&(-a))
19 #define sqr(a) ((a)*(a))
20 #define swap(a,b) ((a)^=(b),(b)^=(a),(a)^=(b))
21 #define eps (1e-8)
22 #define J 10000000
23 #define MAX 0x7f7f7f7f
24 #define PI 3.1415926535897
25 #define N 1004
26 #define M 8204
27 using namespace std;
28 typedef long long LL;
29 int cas,cass;
30 int n,m,lll,ans;
31 int f[N][M];
32 int w[N],c[N],q[N];
33 int main()
34 {
35     #ifndef ONLINE_JUDGE
36 //    freopen("1.txt","r",stdin);
37 //    freopen("2.txt","w",stdout);
38     #endif
39     int i,j;
40 //    for(scanf("%d",&cas);cas;cas--)
41 //    for(scanf("%d",&cas),cass=1;cass<=cas;cass++)
42 //    while(~scanf("%s",s))
43     while(~scanf("%d",&n))
44     {
45         cas=0;
46         memset(f,0,sizeof(f));
47         scanf("%d",&m);
48         for(i=1;i<=n;i++)
49             scanf("%d",&w[i]);
50         for(i=1;i<=n;i++)
51             scanf("%d",&c[i]);
52         for(i=1;i<=n;i++)
53         {
54             for(j=0;j<w[i];j++)f[i][j]=f[i-1][j];
55             for(j=w[i];j<=m;j++)
56             {
57                 f[i][j]=max(f[i-1][j],f[i-1][j-w[i]]+c[i]);
58             }
59         }
60         for(i=n,j=m;i && j>=0;i--)
61         {
62             if(j<w[i])continue;
63             if(f[i][j]==f[i-1][j-w[i]]+c[i])
64             {
65                 q[++cas]=i;
66                 j-=w[i];
67             }
68         }
69         printf("%d\n",cas);
70         for(i=cas;i;i--)
71             printf("%d ",q[i]);
72         puts("");
73     }
74     return 0;
75 }
76 /*
77 //
78
79 //
80 */

千万不要点

时间: 2025-01-06 22:51:02

【动态规划】XMU 1028 Game Boy Advance的相关文章

【动态规划】XMU 1583 Sequence

题目链接: http://acm.xmu.edu.cn/JudgeOnline/problem.php?id=1583 题目大意: T组数据,对于n(n<=6000)给定序列Xn(Xn<=20000),求一个非递减序列Y1, Y2, ..., Yn,使得绝对值差的和|X1-Y1|+|X2-Y2|+...|Xn-Yn|最小,并输出字典序最小的序列Y. 题目思路: [动态规划] 首先序列Y的数字肯定和X中的某一个数字相等,不然可以通过平移得到相等或更优的解.证明不大会证. 用num[i]表示第i小

【动态规划】HDU 1081 &amp; XMU 1031 To the Max

题目链接: http://acm.xmu.edu.cn/JudgeOnline/problem.php?id=1031 题目大意: 给一个n*n(n<=100)的矩阵,求一个矩形覆盖的值最大是多少. 题目思路: [动态规划] 二维的最大字段和.先考虑一维的情况.f[i]=max(f[i-1]+a[i],a[i]) 只要之前的部分和大于零则一起取一定比只取当前位置的要优. 因此只要判断局部段的和是否大于零.同时每多取一个数就要更新答案. 之后只要将一维扩展到二维就行.枚举行的始末位置. 1 //

【最长下降子序列】【动态规划】【二分】XMU 1041 Sequence

题目链接: http://acm.xmu.edu.cn/JudgeOnline/problem.php?id=1041 题目大意: 一个二维平面,上面n(n<=1 000 000)个点.问至少选多少个点才能完全包含所有的点. 包含是指xy坐标均不大于. 题目思路: [最长下降子序列][动态规划][二分] 这题n有107,所以用二分做最长下降子序列. 首先将所有点按x坐标或者y坐标排序,保证一维的单调性. 之后在剩余一维的数中求最长严格下降子序列即可. (如果下一个点是上升的那么可以放弃当前的点转

【动态规划】XMU 1030 苦恼的月下老人

题目链接: http://acm.xmu.edu.cn/JudgeOnline/problem.php?id=1030 题目大意: 给定两个字符串的长度和内容,求最长公共子序列. 题目思路: [动态规划] 求最长公共子序列.f[i][j]表示第一个串匹配到i,第二个串匹配到j的最长长度. 1 // 2 //by coolxxx 3 // 4 #include<iostream> 5 #include<algorithm> 6 #include<string> 7 #in

【动态规划】XMU 1560 新ACM规则

题目链接: http://acm.xmu.edu.cn/JudgeOnline/problem.php?id=1560 题目大意: 给定n(n<=200)个任务及每个任务的耗时,问m(m<=200)时间能够获得的最大收益(收益为解决连续任务数的平方的和,具体例子见题目) 题目思路: [动态规划] 设f[i][j]表示前i个任务,当前时间为j的最优值. 枚举第i个任务是前有几个和i连续的任务,状态转移方程很好推. 时间复杂度比O(n3)小很多,大概O(n2)级别. 1 // 2 //by coo

HDU 1028 Ignatius and the Princess III (动态规划)

题目链接:HDU 1028 Problem Description "Well, it seems the first problem is too easy. I will let you know how foolish you are later." feng5166 says. "The second problem is, given an positive integer N, we define an equation like this: N=a[1]+a[2

HDU 1028 简单动态规划

"Well, it seems the first problem is too easy. I will let you know how foolish you are later." feng5166 says. "The second problem is, given an positive integer N, we define an equation like this: N=a[1]+a[2]+a[3]+...+a[m]; a[i]>0,1<=m

POJ 3071 Football (动态规划-概率DP)

Football Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2768   Accepted: 1412 Description Consider a single-elimination football tournament involving 2n teams, denoted 1, 2, -, 2n. In each round of the tournament, all teams still in the

【动态规划】【二分】【最长上升子序列】Vijos P1028 魔族密码

题目链接: https://vijos.org/p/1028 题目大意: 给N个字符串(N<=2000),求能组成词链的单词最多有几个. 如果在一个由一个词或多个词组成的表中,除了最后一个以外,每个单词都被其后的一个单词所包含 即前一个单词是后一个单词的前缀,则称词表为一个词链.例如下面单词组成了一个词链: i int integer 但下面的单词不组成词链: integer intern 题目思路: [动态规划][二分][最长上升子序列] 二分查找最长可达的长度. 1 // 2 //by co