zoukankan      html  css  js  c++  java
  • uva-10487

    暴力枚举后去重最后二分加推断找答案


    #include<iostream>
    #include<map>
    #include<string>
    #include<cstring>
    #include<cstdio>
    #include<cstdlib>
    #include<cmath>
    #include<queue>
    #include<vector>
    #include<algorithm>
    using namespace std;
    int main()
    {
    	int count=0;
    	int t,m,i,n,j;
    	int a[1010];
    	while(cin>>n&&n)
    	{
    		printf("Case %d:
    ",++count);
    		vector<int>box;
    		for(i=0;i<n;i++)
    			cin>>a[i];
    		for(i=0;i<n;i++)
    			for(j=i+1;j<n;j++)
    				box.push_back(a[i]+a[j]);
    		sort(box.begin(),box.end());
    		box.erase(unique(box.begin(),box.end()),box.end());
    		cin>>m;
    		n=box.size();
    		while(m--)
    		{
    			cin>>t;
    			i=lower_bound(box.begin(),box.end(),t)-box.begin();
    			if(i==n)
    				i--;
    			else if(i>0)
    				if(abs(box[i]-t)>abs(box[i-1]-t))
    					i--;
    			printf("Closest sum to %d is %d.
    ",t,box[i]);
    		}
    	}
    	return 0;
    }

    Problem D
    Closest Sums
    Input: standard input
    Output: standard output
    Time Limit: 3 seconds

    Given is a set of integers andthen a sequence of queries. A query gives you a number and asks to find a sum oftwo distinct numbers from the set, which is closest to the query number.

    Input

    Input contains multiple cases.

    Each case starts with an integer n(1<n<=1000), which indicates, how many numbers are in the set of integer.Next n lines contain n numbers. Of course there is only one number in a singleline. The next line contains a positive integer m giving the number ofqueries, 0 < m < 25. The next m lines contain aninteger of the query, one per line.

    Input is terminated by a case whose n=0. Surely,this case needs no processing.

    Output

    Output should be organized as in the samplebelow. For each query output one line giving the query value and the closestsum in the format as in the sample. Inputs will be such that no ties will occur.

    Sample input

    5

    3
    12
    17
    33
    34
    3
    1
    51
    30
    3
    1
    2
    3
    3
    1
    2
    3

    3

    1
    2
    3
    3
    4
    5
    6
    0

    Sample output

    Case 1:
    Closest sum to 1 is 15.
    Closest sum to 51 is 51.
    Closest sum to 30 is 29.
    Case 2:
    Closest sum to 1 is 3.
    Closest sum to 2 is 3.
    Closest sum to 3 is 3.
    Case 3:
    Closest sum to 4 is 4.
    Closest sum to 5 is 5.
    Closest sum to 6 is 5.

    Piotr Rudnicki



  • 相关阅读:
    转:CTE(公共表表达式)——WITH子句
    排名函数——ROW_NUMBER()、RANK()、DENSE_RANK()和NTILE(n)
    深层拷贝和浅层拷贝
    Jmeter如何连接数据库Mysql
    java执行cmd命令并获取输出结果
    Java 读取Excel2007 jar包冲突的问题(org.apache.poi.POIXMLException: java.lang.reflect.InvocationTargetException)
    读写文件
    eclipse报jvm terminated.exitcode=2异常解决办法
    Appium常用的API函数
    自动化生成html报告
  • 原文地址:https://www.cnblogs.com/yxwkf/p/5326593.html
Copyright © 2011-2022 走看看