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

首頁 > 學院 > 開發(fā)設計 > 正文

1048. Find Coins (25)

2019-11-11 06:55:35
字體:
供稿:網(wǎng)友

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;}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 钟祥市| 博客| 宁海县| 惠水县| 穆棱市| 张北县| 新干县| 资源县| 施甸县| 尼玛县| 崇阳县| 德化县| 定襄县| 墨竹工卡县| 静乐县| 漳平市| 潞西市| 五台县| 惠来县| 河北省| 安乡县| 五原县| 博爱县| 华亭县| 阳泉市| 汉川市| 咸阳市| 孝昌县| 闸北区| 武清区| 剑川县| 洮南市| 安龙县| 乌兰察布市| 高清| 清丰县| 浏阳市| 德州市| 宜丰县| 祁东县| 句容市|