bc #77 div 2 1001 ||hdu 5650 so easy (傻逼题)
题目链接 題意:已知一个包含 nn 个元素的正整数集合 SS,设 f(S)f(S) 为集合 SS 中所有元素的异或(XOR)的结果。 如:S={1,2,3}, 则 f(S) = 0f(S)=0。
给出集合 SS,你需要计算 将所有 f(s)进行异或后的值, s⊆S.
思路:当集合中元素大于1个的时候,每个元素对都会出现偶数次,对答案的贡献为0.
当集合中只有一个元素的时候,设为x,对答案的贡献为x.
/* ***********************************************
Author :111qqz
Created Time :2016年03月26日 星期六 18时52分14秒
File Name :code/bc/#77/1002.cpp
************************************************ */
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#define fst first
#define sec second
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define ms(a,x) memset(a,x,sizeof(a))
typedef long long LL;
#define pi pair < int ,int >
#define MP make_pair
using namespace std;
const double eps = 1E-8;
const int dx4[4]={1,0,0,-1};
const int dy4[4]={0,-1,1,0};
const int inf = 0x3f3f3f3f;
const int N=1005;
int n;
int a[N];
int main()
{
#ifndef ONLINE_JUDGE
freopen("code/in.txt","r",stdin);
#endif
int T;
cin>>T;
while (T--)
{
scanf("%d",&n);
for ( int i = 0 ; i < n ; i++) scanf("%d",&a[i]);
if (n==1)
{
printf("%d\n",a[0]);
}
else
printf("0\n");
}
#ifndef ONLINE_JUDGE
fclose(stdin);
#endif
return 0;
}