标签:des style blog http io color ar os for
最小的n个和 | ||||||
|
||||||
Description | ||||||
给定A、B两个数列,各包含n个数,分别从A和B中任意取一个数相加得到和,这样会有n^2种结果(包括重复的),求n^2个结果中前n个最小的和。
|
||||||
Input | ||||||
有多组测试数据。 对于每组测试数据,第一行为n,第二行为数列A,第三行为数列B。 1<=n<=100000, 0 <= Ai, Bi <= 10^9。 |
||||||
Output | ||||||
对于每组测试数据,输出一行,包含前n个最小的和,按照升序输出,两数之间用一个空格隔开。 |
||||||
Sample Input | ||||||
5
1 3 4 2 0
7 3 5 2 11
10
74 50 47 45 38 64 19 2 84 69
91 46 44 7 67 1 40 60 78 41
|
||||||
Sample Output | ||||||
2 3 3 4 4
3 9 20 26 39 42 43 45 46 46
|
||||||
Source | ||||||
HCPC2014校赛训练赛 3 |
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <stack> using namespace std; int a[100005]; int b[100005]; int sum[100005]; int main() { #ifdef xxz freopen("in.txt","r",stdin); #endif // xxz int n; while(cin>>n) { for(int i = 0; i < n; i++) cin>>a[i]; for(int i = 0; i < n; i++) cin>>b[i]; sort(a,a+n); sort(b,b+n); for(int i = 0; i < n; i++) sum[i] = a[0] + b[i]; make_heap(sum,sum+n); for(int i =1 ; i < n; i++) { for(int j = 0; j < n; j++) { int t = b[j] + a[i]; if(t > sum[0]) break; else { pop_heap(sum,sum+n); sum[n-1] = t; push_heap(sum,sum+n); } } } sort(sum,sum+n); for(int i = 0; i < n-1; i++) { cout<<sum[i]<<" "; } cout<<sum[n-1]<<endl; } return 0; }
标签:des style blog http io color ar os for
原文地址:http://blog.csdn.net/u013445530/article/details/40747585