博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 6168 Numbers【水题】
阅读量:6215 次
发布时间:2019-06-21

本文共 2231 字,大约阅读时间需要 7 分钟。

Numbers

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)
Total Submission(s): 356    Accepted Submission(s): 180


Problem Description
zk has n numbers 
a1,a2,...,an. For each (i,j) satisfying 1≤i<j≤n, zk generates a new number 
(ai+aj). These new numbers could make up a new sequence 
b1b2,...,bn(n1)/2.
LsF wants to make some trouble. While zk is sleeping, Lsf mixed up sequence a and b with random order so that zk can't figure out which numbers were in a or b. "I'm angry!", says zk.
Can you help zk find out which n numbers were originally in a?
 

Input
Multiple test cases(not exceed 10).
For each test case:
The first line is an integer m(0≤m≤125250), indicating the total length of a and b. It's guaranteed m can be formed as n(n+1)/2.
The second line contains m numbers, indicating the mixed sequence of a and b.
Each 
ai is in [1,10^9]
 

Output
For each test case, output two lines.
The first line is an integer n, indicating the length of sequence a;
The second line should contain n space-seprated integers 
a1,a2,...,an(a1a2...an). These are numbers in sequence a.
It's guaranteed that there is only one solution for each case.
 

Sample Input
 
6 2 2 2 4 4 4 21 1 2 3 3 4 4 5 5 5 6 6 6 7 7 7 8 8 9 9 10 11
 

Sample Output
 
3 2 2 2 6 1 2 3 4 5 6
 

Source
题意:

给你两个序列A,B,序列B中的数是A中任意两个数的和。现在给出你A,B序列混在一起的数,让你找出A序列输出。

思路:

每次加进去一个筛掉后最小的数,然后与前面已经有的数把剩下的数筛一下就好。

 
#include 
#define INF 0x3f3f3f3f#define ms(x,y) memset(x,y,sizeof(x))using namespace std;typedef long long ll;const double pi = acos(-1.0);const int mod = 1e9 + 7;const int maxn = 125350;int a[maxn], ans[maxn];int main(){ //freopen("in.txt","r",stdin); //freopen("out.txt","w",stdout); int n; while (~scanf("%d", &n)) { map
mp; for (int i = 0; i < n; i++) { scanf("%d", a + i); mp[a[i]]++; } int num = 0; for (int i = 0; i < n; i++) { if (mp[a[i]]) //加进去与前面有的筛一下就好 { mp[a[i]]--; ans[num++] = a[i]; for (int k = num - 2; k >= 0; k--) if (mp[ans[num - 1] + ans[k]]) mp[ans[num - 1] + ans[k]]--; } } printf("%d\n", num); for (int i = 0; i < num; i++) { cout << ans[i]; if (i != num - 1) printf(" "); } puts(""); } return 0;}
 

 

转载于:https://www.cnblogs.com/Archger/p/8451564.html

你可能感兴趣的文章
微软职位内部推荐-Sr. SW Engineer for Azure Networking
查看>>
Could not load file or assembly&#39;System.Data.SQLite.dll&#39; or one of its depedencies
查看>>
非常简单的 xml转成数组的方法
查看>>
SQL CLR学习
查看>>
String的高级用法(String.Format)
查看>>
切,切,切,将文本文件按行分割
查看>>
【翻译】Tomcat 6.0 部署与发布
查看>>
hash_map map
查看>>
自动补全多标签输入, 适合新闻标签/商品标签
查看>>
逻辑操作符、位操作符号的忽略点
查看>>
Explicit keyword
查看>>
后台action处理数据传递给前台界面
查看>>
extJS4.2.0 Json数据解析,嵌套及非嵌套(二)
查看>>
ctrl+c,ctrl+d,ctrl+z在linux中意义
查看>>
安卓开发环境配置及HelloWorld
查看>>
Oracle SQL Developer如何配置TNS
查看>>
KVM 介绍(2):CPU 和内存虚拟化
查看>>
Eclipse 4.4.2 取消空格键代码上屏
查看>>
【Unity3D】自动寻路(Nav Mesh Agent组件)
查看>>
winform视频教程-任务定时循环执行小工具
查看>>