码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 5522 Numbers

时间:2015-11-01 12:40:54      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:

水题

#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;

int tot[2000];
int n;
int a[105];

int main()
{
    while(~scanf("%d",&n)){
    memset(tot,0,sizeof tot);
    for(int i=1;i<=n;i++)
    {
        scanf("%d",&a[i]);
        tot[a[i]]++;
    }
    int ans=0;
    for(int i=1;i<=n;i++)
    {
        for(int j=i+1;j<=n;j++)
        {
            tot[a[i]]--;
            tot[a[j]]--;
            if(tot[a[i]+a[j]]>0) {ans=1;break;}
            tot[a[i]]++;
            tot[a[j]]++;
        }
        if(ans==1) break;
    }
    if(ans==0) printf("NO\n");
    else printf("YES\n");
    }
    return 0;
}

 

HDU 5522 Numbers

标签:

原文地址:http://www.cnblogs.com/zufezzt/p/4927470.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!