PAT1068. Find More Coins

Eva loves to collect coins from all over the universe, including some other planets like Mars. One day she visited a universal shopping mall which could accept all kinds of coins as payments. However, there was a special requirement of the payment: for each bill, she must pay the exact amount. Since she has as many as 104 coins with her, she definitely needs your help. You are supposed to tell her, for any given amount of money, whether or not she can find some coins to pay for it.

Input Specification:

Each input file contains one test case. For each case, the first line contains 2 positive numbers: N (<=104, the total number of coins) and M(<=102, the amount of money Eva has to pay). The second line contains N face values of the coins, which are all positive numbers. All the numbers in a line are separated by a space.

Output Specification:

For each test case, print in one line the face values V1 <= V2 <= ... <= Vk such that V1 + V2 + ... + Vk = M. All the numbers must be separated by a space, and there must be no extra space at the end of the line. If such a solution is not unique, output the smallest sequence. If there is no solution, output "No Solution" instead.

Note: sequence {A[1], A[2], ...} is said to be "smaller" than sequence {B[1], B[2], ...} if there exists k >= 1 such that A[i]=B[i] for all i < k, and A[k] < B[k].

Sample Input 1:

8 9
5 9 8 7 2 3 4 1

Sample Output 1:

1 3 5

Sample Input 2:

4 8
7 2 4 3

Sample Output 2:

No Solution

思路:典型的0-1背包动态规划,但是此题有一点需要注意,按照字典顺序进行排序,则需要将value进行从大到小排序,之所以从大到小排序,是因为利用dp一维数组进行的。应抓住此处要领。

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <algorithm>
 5 #include <vector>
 6 using namespace std;
 7 #define MAX 10010
 8 int dp[MAX]={
 9     0
10 };
11 int value[MAX];
12 bool choice[MAX][MAX]={
13     false
14 };
15 bool cmp(int a,int b)
16 {
17     return a>b;
18 }
19 int main(int argc, char *argv[])
20 {
21     int N,M;
22     scanf("%d%d",&N,&M);
23     for(int i=1;i<=N;i++)
24        scanf("%d",&value[i]);
25     sort(value+1,value+N+1,cmp);  //排序的是地址
26     for(int i=1;i<=N;i++)
27     {
28         for(int v=M;v>=value[i];v--)
29         {
30             if(dp[v]<=dp[v-value[i]]+value[i])
31             {
32                 choice[i][v]=true;
33                 dp[v]=dp[v-value[i]]+value[i];
34             }
35         }
36     }
37     vector<int>ans;
38    // cout<<dp[N][M]<<endl;
39     if(dp[M]!=M)
40     {
41         printf("No Solution\n");
42     }
43     else
44     {
45         int k=N;
46         int num=0;
47         while(k>0)
48         {
49             if(choice[k][M])
50             {
51                 M-=value[k];
52                 ans.push_back(value[k]);
53                 num++;
54             }
55             k--;
56         }
57         for(int i=0;i<ans.size();i++)
58         {
59             printf("%d",ans[i]);
60             if(i!=ans.size()-1)
61                putchar(‘ ‘);
62         }
63         putchar(‘\n‘);
64     }
65     return 0;
66 }

时间: 2024-12-12 19:42:20

PAT1068. Find More Coins的相关文章

pat1068. Find More Coins (30)

1068. Find More Coins (30) 时间限制 150 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Eva loves to collect coins from all over the universe, including some other planets like Mars. One day she visited a universal shopping mall which could ac

UVA 562 Dividing coins --01背包的变形

01背包的变形. 先算出硬币面值的总和,然后此题变成求背包容量为V=sum/2时,能装的最多的硬币,然后将剩余的面值和它相减取一个绝对值就是最小的差值. 代码: #include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace std; #define N 50007 int c[102],d

【HDOJ】2844 Coins

完全背包. 1 #include <stdio.h> 2 #include <string.h> 3 4 int a[105], c[105]; 5 int n, m; 6 int dp[100005]; 7 8 int mymax(int a, int b) { 9 return a>b ? a:b; 10 } 11 12 void CompletePack(int c) { 13 int i; 14 15 for (i=c; i<=m; ++i) 16 dp[i]

【背包专题】 D - Coins hdu2844【多重背包】

Whuacmers use coins.They have coins of value A1,A2,A3...An Silverland dollar. One day Hibix opened purse and found there were some coins. He decided to buy a very nice watch in a nearby shop. He wanted to pay the exact price(without change) and he kn

【动态规划】Gym - 101102A - Coins

Hasan and Bahosain want to buy a new video game, they want to share the expenses. Hasan has a set of N coins and Bahosain has a set of M coins. The video game costs W JDs. Find the number of ways in which they can pay exactly W JDs such that the diff

H - Coins

H - Coins Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Description Whuacmers use coins.They have coins of value A1,A2,A3...An Silverland dollar. One day Hibix opened purse and found there were some coins. He decided to

poj 1742 Coins(dp之多重背包+多次优化)

Description People in Silverland use coins.They have coins of value A1,A2,A3...An Silverland dollar.One day Tony opened his money-box and found there were some coins.He decided to buy a very nice watch in a nearby shop. He wanted to pay the exact pri

F - Coins

Time Limit:3000MS     Memory Limit:30000KB     64bit IO Format:%I64d & %I64u Submit Status Practice POJ 1742 Description People in Silverland use coins.They have coins of value A1,A2,A3...An Silverland dollar.One day Tony opened his money-box and fou

uva562 - Dividing coins(01背包)

题目:uva562 - Dividing coins(01背包) 题目大意:给出N个硬币,每个硬币有对应的面值.要求将这些硬币分成两部分,求这两部分最小的差值. 解题思路:先求这些硬币能够凑出的钱(0, 1背包),然后再从sum(这些硬币的总和)/2开始往下找这个值能否由这些硬币凑出.要注意的是,可以由前n个硬币组成那样也是可以组成的面值. 代码: #include <cstdio> #include <cstring> const int N = 105; const int m