PAT 甲级 1048 Find Coins (25 分)

本是古典 何须时尚 2024-02-19 21:47 148阅读 0赞

1048 Find Coins (25 分)

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 105 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 (≤105, the total number of coins) and M (≤103, 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:

  1. 8 15
  2. 1 2 8 7 2 4 11 15

Sample Output 1:

  1. 4 11

Sample Input 2:

  1. 7 14
  2. 1 8 7 2 4 11 15

Sample Output 2:

  1. No Solution

我这里巧用了map按照键值大小排序的特性。

  1. #include<iostream>
  2. #include<map>
  3. #include<cstdio>
  4. using namespace std;
  5. int main()
  6. {
  7. int n,m,i,j,t,f=0;
  8. map<int,int> a;
  9. cin>>n>>m;
  10. for(i=0;i<n;i++)
  11. {
  12. cin>>t;
  13. if(a.count(t)==0)
  14. a.insert(make_pair(t,1));
  15. else
  16. a[t]++;
  17. }
  18. for(map<int,int>::iterator it=a.begin();it!=a.end();it++)
  19. {
  20. if(a.count(m-it->first)==1)
  21. {
  22. if(it->first!=m-it->first)
  23. {
  24. f=1;
  25. cout<<it->first<<" "<<m-it->first<<endl;
  26. break;
  27. }
  28. else
  29. if(it->second>=2)
  30. {
  31. cout<<it->first<<" "<<m-it->first<<endl;
  32. f=1;
  33. break;
  34. }
  35. }
  36. }
  37. if(f==0)
  38. cout<<"No Solution"<<endl;
  39. return 0;
  40. }

发表评论

表情:
评论列表 (有 0 条评论,148人围观)

还没有评论,来说两句吧...

相关阅读