HDU 5650

Posted 萌萌哒哒哒

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 5650相关的知识,希望对你有一定的参考价值。

题意:给你一个集合,求这个集合所有子集的异或结果。

解法:1、异或运算的自反性。如果一个数异或偶数次的话,结果为零。

2、一个集合的子集数是2的n次方个

3、一个集合里的数(数的个数大于等于二),在所有的子集里会出现偶数次。

 

综上,所有的数异或偶数的时候,全都等于0;特殊情况,集合里只有一个数。

 

代码:

#include <stdio.h>
#include <string.h>
#include <math.h>
#include <algorithm>
#include <stdlib.h>
#include <queue>
using namespace std;

int a[1010];

int main()
{
    int T,n;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d",&n);
        int sum=0;
        for(int i=0;i<n;i++)
        {
            scanf("%d",&a[i]);
        }
        if(n==1)
        {
            printf("%d\n",a[0]);
        }
        else
        {
            printf("0\n");
        }
    }
    return 0;
}

 

以上是关于HDU 5650的主要内容,如果未能解决你的问题,请参考以下文章

HDU 5650 so easy

HDU 5650 so easy

BestCoder Round #77 (div.2)(hdu5650,hdu5651(逆元),hdu5652(二分),hdu5653(dp))

第六周周赛——AK机会不易得,好好把握题解(出自HDU5650,codeforces 616A,624A,659A,655A,658A)

第六周周赛——AK机会不易得,好好把握题解(出自HDU5650,codeforces 616A,624A,659A,655A,658A)

HDU4057 Rescue the Rabbit(AC自动机+状压DP)