-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDay4.cpp
60 lines (52 loc) · 1013 Bytes
/
Day4.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
//Minimum X (xor) A
// { Driver Code Starts
// Initial Template for C++
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
// User function Template for C++
class Solution {
public:
int minVal(int a, int b) {
// code here
int c=0;
while(b)
{
b=b&(b-1);
c++;
}
int ans=0;
for(int i=31;i>=0;i--)
{
if(c<=0)
break;
if((a&(1<<i))>0)
{
c--;
ans+=(1<<i);
}
}
for(int i=0;i<31&&c>0;i++)
{
if((ans&(1<<i))==0)
{
ans+=(1<<i);
c--;
}
}
return ans;
}
};
// { Driver Code Starts.
int main() {
int t;
cin >> t;
while (t--) {
int a, b;
cin >> a >> b;
Solution ob;
cout << ob.minVal(a, b);
cout << "\n";
}
return 0;
} // } Driver Code Ends