国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

1048. Find Coins (25)

2019-11-11 07:38:54
字體:
來源:轉載
供稿:網友

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

#include<cstdio>#include<algorithm>using namespace std;const int maxn=100010;int a[maxn];int main(){ int n,m; scanf("%d%d",&n,&m); for(int i=0;i<n;i++){ scanf("%d",&a[i]); } sort(a,a+n); int i=0,j=n-1; while(i<j&&j<n){ if(a[i]+a[j]<m) i++; else if(a[i]+a[j]>m) j--; else break; } if(i<j) printf("%d %d/n",a[i],a[j]); else printf("No Solution/n"); return 0;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 梓潼县| 姚安县| 赤水市| 泾源县| 仙居县| 阿克苏市| 泗洪县| 宁海县| 古交市| 电白县| 屯昌县| 乌拉特后旗| 祁阳县| 方正县| 美姑县| 钦州市| 香港| 瓮安县| 鄂尔多斯市| 松滋市| 嘉善县| 平顶山市| 辉南县| 武威市| 修水县| 房山区| 巩义市| 马龙县| 和林格尔县| 田林县| 茶陵县| 九江市| 开化县| 阳谷县| 抚顺县| 桦川县| 昌图县| 海淀区| 江山市| 宣威市| 康定县|