标签:
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:
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
思路:利用了二分法, 其实本道题还可以用哈希方法,和two pointers, 其中two pointers 利用排序,将两个指针一个放在开头,一个放在结尾,不断向中间收缩。
1 #include <iostream> 2 #include <cstdio> 3 #include <algorithm> 4 using namespace std; 5 #define MAX 100010 6 int data[MAX]; 7 int main(int argc, char *argv[]) 8 { 9 int N,M; 10 scanf("%d%d",&N,&M); 11 for(int i=0;i<N;i++) 12 scanf("%d",&data[i]); 13 sort(data,data+N); 14 bool flag=false; 15 int j=0; 16 for(int i=0;i<N-1;i++) 17 { 18 //利用二分法 19 int left=i+1,right=N; 20 int find =M-data[i]; 21 while(left<right) 22 { 23 int mid=(left+right)/2; 24 if(data[mid]>=find) 25 { 26 right=mid; 27 } 28 else 29 left=mid+1; 30 } 31 if(left<N&&data[left]==find) 32 { 33 flag=true; 34 printf("%d %d\n",data[i],data[left]); 35 break; 36 } 37 } 38 if(!flag) 39 printf("No Solution\n"); 40 return 0; 41 }
标签:
原文地址:http://www.cnblogs.com/GoFly/p/4297564.html