zoukankan      html  css  js  c++  java
  • 1048. Find Coins (25)

     

    时间限制
    50 ms
    内存限制
    65536 kB
    代码长度限制
    16000 B
    判题程序
    Standard
    作者
    CHEN, Yue

    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

     1 #include <stdio.h>
     2 int main()
     3 {
     4     int n,line,i;
     5     int hash[1001];
     6     while(scanf("%d%d",&n,&line)!=EOF)
     7     {
     8         getchar();
     9         for(i = 1;i<=1000;i++)
    10             hash[i] = 0;
    11         for(i =0 ;i<n;i++)
    12         {
    13             int tem;
    14             scanf("%d",&tem);
    15             ++hash[tem];
    16         }
    17 
    18         bool find = false;
    19         for(i = 1 ;i<= line/2;++i)
    20         {
    21             if(hash[i]>0)
    22             {
    23                 --hash[i];
    24                 if(hash[line-i]>0)
    25                 {
    26                     find = true;
    27                     break;
    28                 }
    29                 else
    30                 {
    31                     ++hash[i];
    32                 }
    33             }
    34         }
    35 
    36         if(find)
    37         {
    38             printf("%d %d
    ",i,line-i);
    39         }
    40         else
    41         {
    42             printf("No Solution
    ");
    43         }
    44 
    45     }
    46     return 0;
    47 }
  • 相关阅读:
    Django简单分页器
    linux之i2c子系统架构---总线驱动
    linux之I2C裸机驱动解析(转)
    S3C2440 LCD驱动(FrameBuffer)实例开发<一>(转)
    S3C2440 LCD驱动(FrameBuffer)实例开发<二>(转)
    linux内核输入子系统分析
    S3C6410中断系统
    DM9000时序设置
    怎么看时序图--nand flash的读操作详解
    DM9000裸机驱动程序设计
  • 原文地址:https://www.cnblogs.com/xiaoyesoso/p/4276473.html
Copyright © 2011-2022 走看看