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

hdu ACM Steps 1.2.5 find your present (2)

时间:2017-06-11 21:08:25      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:ons   cst   scanf   log   基础题   pad   ++   没有想到   algo   

基础题。异或。

这道题很简单。但一开始我并没有想到O(n)的算法,然后排序tle了一发。

后来一直在想怎么使得俩个相同数互相“抵消”掉,灵机一动,发现这是异或。

#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn = 100000 + 10;

int a,n,ans;

int main() {
    while(scanf("%d",&n) && n) {
        ans=0;
        for(int i=1;i<=n;i++) {
            scanf("%d",&a);
            ans^=a;
        }
        printf("%d\n",ans);
    }
    return 0;
}

hdu ACM Steps 1.2.5 find your present (2)

标签:ons   cst   scanf   log   基础题   pad   ++   没有想到   algo   

原文地址:http://www.cnblogs.com/invoid/p/6986208.html

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