首页 > 其他 > 详细

1048. Find Coins

时间:2015-03-06 11:21:47      阅读:313      评论:0      收藏:0      [点我收藏+]

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.


#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> coin;
int main ()
{
    int i,n,m,temp;
    scanf("%d %d",&n,&m);
    for( i=0;i<n;i++)
    {
         scanf("%d",&temp);
         coin.push_back(temp);
         }
    sort(coin.begin(),coin.end());
    int low=0,high=coin.size()-1,sum=0;
    if( low==high)
    {
            printf("No Solution\n");
            system("pause");
            return 0;
        }
    for( ;low<high;)
    {
         sum=coin[low]+coin[high];
         if( sum==m)
         {
             printf("%d %d\n",coin[low],coin[high]);
             system("pause");
             return 0;
             }
         else if( sum>m) high--;
         else low++;
         }
    printf("No Solution\n");
    system("pause");
    return 0;
    }


1048. Find Coins

原文:http://blog.csdn.net/lchinam/article/details/44096195

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!