-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathUnique number 2.cpp
74 lines (65 loc) Β· 1.16 KB
/
Unique number 2.cpp
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Using hashing but it consumes more space so we need to reduce space complexicity using bitmasking
/*
#include<bits/stdc++.h>
using namespace std;
main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int n,ele,i;
cin>>n;
map<int,int> a;
for(i=0;i<n;i++)
{
cin>>ele;
a[ele]++;
}
for(auto it:a)
if(it.second==1)
cout<<it.first<<" ";
}
*/
#include<bits/stdc++.h>
using namespace std;
int firstsetbit(int n)
{
int i=0;
while(1)
{
if((1<<i)&n!=0)
break;
else
i++;
}
return i;
}
int firstnumber(int *a,int n,int x)
{
int mask=(1<<x);
int first=0;
for(int i=0;i<n;i++)
{
if((mask&a[i])!=0)
{
first=first^a[i];
}
}
return first;
}
main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int i,n;
cin>>n;
int a[n],xore=0;
for(i=0;i<n;i++)
{
cin>>a[i];
xore=xore^a[i];
}
int x=firstsetbit(xore);
int first_ele=firstnumber(a,n,x);
int second_ele=xore^first_ele;
cout<<first_ele<<" "<<second_ele;
}