PAT_A1048#Find Coins

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 V1​​ and V2​​ (separated by a space) such that V1​​+V2​​=M and V1​​V2​​. If such a solution is not unique, output the one with the smallest V1​​. 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:

  • Given figure exceeds 500

Code:

. 1  / * 
2  the Data: 2019-07-21 20:01:45
 . 3  Problem: PAT_A1048 # Coins is the Find
 . 4  the AC: 11:22
 . 5  
. 6  Title effect:
 7  given integer s, the number of focus find a + b = s
 . 8  * / 
. 9  
10 #include <cstdio>
 . 11  const  int M = 1E3;
 12 is  int MP [M] = { 0 };
 13 is  
14  int main ()
 15  {
 16  #ifdef ONLINE_JUDGE
 . 17  #else 
18 is      The freopen ( " the 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 }

 

Guess you like

Origin www.cnblogs.com/blue-lin/p/11222524.html