-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bit Magic.cpp
75 lines (57 loc) · 1.19 KB
/
Bit Magic.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
75
//{ Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
class Array
{
public:
template <class T>
static void input(vector<T> &A,int n)
{
for (int i = 0; i < n; i++)
{
scanf("%d ",&A[i]);
}
}
template <class T>
static void print(vector<T> &A)
{
for (int i = 0; i < A.size(); i++)
{
cout << A[i] << " ";
}
cout << endl;
}
};
// } Driver Code Ends
class Solution {
public:
int bitMagic(int n, vector<int> &arr) {
// code here
int count=0;
int start=0;
int end=n-1;
while(start<=end){
if(arr[start]!=arr[end])
count++;
start++;
end--;
}
if(count%2) return (count/2)+1;
return count/2;
}
};
//{ Driver Code Starts.
int main(){
int t;
scanf("%d ",&t);
while(t--){
int n;
scanf("%d",&n);
vector<int> arr(n);
Array::input(arr,n);
Solution obj;
int res = obj.bitMagic(n, arr);
cout<<res<<endl;
}
}
// } Driver Code Ends