题解 U534158 【单身排查】

题目链接:单身排查

关于题目:作为 T1,一道很水很水的有关位运算的题目。

应用算法:无。


\(\ \ \ \ \ \ \)一句话题意:一共 \(n\) 个数,其中的存在某一个数字出现了奇数次,其它的数字均出现偶数次,请你求出这个数字。

\(\ \ \ \ \ \ \)由于太水了,我就直接说了:C++ 的位运算中有一个东西叫异或(^),相同的偶数个数字的异或和为 \(0\),相同的奇数个数字的异或和为该数字。

\(\ \ \ \ \ \ \)所以这道题就相当于求出所有数字的异或和

\(\ \ \ \ \ \ \)代码(码风不喜勿喷):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include<bits/stdc++.h>
#define in inline
#define re register
#define int unsigned long long
//数据范围的原因,常规套路
using namespace std;
int n,x,ans;
//每个数组或变量的含义详见处理过程。
in int qread()
//快读
{
int x=0,y=1;
int c=getchar();
while(c<'0'||c>'9')
{
if(c=='-')y=-1;
c=getchar();
}
while(c>='0'&&c<='9')
{
x=(x<<1)+(x<<3)+(c^48);
c=getchar();
}
return x*y;
}
in void qwrite(re int x)
//快写
{
if(x<0)
{
putchar('-');
x=-x;
qwrite(x);
}
else
{
if(x>9)
{
qwrite(x/10);
}
putchar(x%10+'0');
}
return ;
}
signed main()
{
n=qread();
for(re int i=1;i<=n;i++)
{
x=qread();
ans^=x;
//异或
}
qwrite(ans);
//输出异或和
putchar('\n');
return 0;
}
txQc8J.png