当前位置 : 主页 > 手机开发 > ROM >

PAT_A1048#Find Coins

来源:互联网 收集:自由互联 发布时间:2021-06-10
Source: PAT A1048Find Coins(25分) Description: 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.

Source:

PAT A1048 Find Coins (25 分)

Description:

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 could only use exactly two coins to pay the exact amount. Since she has as many as 1 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 two 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 (≤, the total number of coins) and M (≤, the amount of money Eva has to pay). The second line contains N face values of the coins, which are all positive numbers no more than 500. All the numbers in a line are separated by a space.

Output Specification:

For each test case, print in one line the two face values V?1?? and V?2?? (separated by a space) such that V?1??+V?2??=M and V?1??V?2??. If such a solution is not unique, output the one with the smallest V?1??. If there is no solution, output No Solution instead.

Sample Input 1:

8 15
1 2 8 7 2 4 11 15

Sample Output 1:

4 11

Sample Input 2:

7 14
1 8 7 2 4 11 15

Sample Output 2:

No Solution

Keys:

  • 哈希映射

Attention:

  • 所给数字超过了500

Code:

 1 /*
 2 Data: 2019-07-21 20:01:45
 3 Problem: PAT_A1048#Find Coins
 4 AC: 11:22
 5 
 6 题目大意:
 7 给定整数s,从数集中找出a+b=s
 8 */
 9 
10 #include<cstdio>
11 const int M=1e3;
12 int mp[M]={0};
13 
14 int main()
15 {
16 #ifdef    ONLINE_JUDGE
17 #else
18     freopen("Test.txt", "r", stdin);
19 #endif
20 
21     int n,s,t;
22     scanf("%d%d", &n,&s);
23     for(int i=0; i<n; i++)
24     {
25         scanf("%d", &t);
26         mp[t]++;
27     }
28     for(int i=1; i<=s/2; i++)
29     {
30         if(mp[i] && mp[s-i] && i!=s-i)
31         {
32             printf("%d %d", i,s-i);
33             s=0;break;
34         }
35     }
36     if(s!=0 && s%2==0 && mp[s/2]>1)
37         printf("%d %d", s/2,s/2);
38     else if(s!=0)
39         printf("No Solution");
40 
41     return 0;
42 }
网友评论