题目链接:

Summary

Time Limit: 2000/1000 MS (Java/Others)   

 Memory Limit: 32768/32768 K (Java/Others)

Problem Description
 
Small W is playing a summary game. Firstly, He takes N numbers. Secondly he takes out every pair of them and add this two numbers, thus he can get N*(N - 1)/2 new numbers. Thirdly he deletes the repeated number of the new numbers. Finally he gets the sum of the left numbers. Now small W want you to tell him what is the final sum.
 
Input
 
Multi test cases, every case occupies two lines, the first line contain n, then second line contain n numbers a1, a2, ……an separated by exact one space. Process to the end of file.
[Technical Specification]
2 <= n <= 100
-1000000000 <= ai <= 1000000000
 
Output
 
For each case, output the final sum.
 
Sample Input
4
1 2 3 4
2
5 5
 
Sample Output
25
10
 
题意:
 
求生成的数的和,重复的去掉;
 
思路:
 
水题;
 
AC代码:
 
#include <bits/stdc++.h>
using namespace std;
const int N=3e5+;
typedef long long ll;
int n,a[];
queue<int>qu;
map<int,int>mp;
int main()
{
while(scanf("%d",&n)!=EOF)
{
ll ans=;
for(int i=;i<=n;i++)
{
scanf("%d",&a[i]);
}
for(int i=;i<=n;i++)
{
for(int j=i+;j<=n;j++)
{
mp[a[i]+a[j]]=;
qu.push(a[i]+a[j]);
}
}
while(!qu.empty())
{
int fr=qu.front();
qu.pop();
if(mp[fr]==)ans+=fr,mp[fr]=;
}
printf("%lld\n",ans);
}
return ;
}

最新文章

  1. 遍历dynamic的方式
  2. Ubuntu 16.04 install 搜狗输入法
  3. TPS04-J. 使用线程池时确保ThreadLocal变量每次都初始化
  4. Stream 和 byte[]
  5. Golden Gate 概念和机制
  6. Arduino 电平转换 升压 OUTPUT与9V/12V元件通信
  7. LeetCode 263
  8. String功能测试
  9. Ch04 充满动作的控制器
  10. 201521123075 《Java程序设计》第3周学习总结
  11. MySQL优化四 索引优化
  12. Hadoop的运行痕迹
  13. 百度AI开放平台 情感倾向分析实例以及gbk编码解决
  14. linux添加自定义命令
  15. es-aggregations聚合分析
  16. hdu 2036:改革春风吹满地(叉积求凸多边形面积)
  17. flynn 开源paas 平台安装试用
  18. postman创建mocker Server
  19. springBoot 自动配置原理
  20. render:h =&gt; h(App) 是什么意思?

热门文章

  1. Android 测试自定义纯数字软键盘
  2. ant的安装和配置
  3. android清除缓存为什么总是存在12k?
  4. 电话号码 【trie树】
  5. iOS 摇一摇的实现
  6. python去除停用词(结巴分词下)
  7. 每天进步一点点——mysql——Percona XtraBackup(innobackupex)
  8. OI知识体系
  9. Unity3D总结:关于射线碰撞
  10. jsp 下拉框首字母定位可检索