-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShuffling_Parities.cpp
153 lines (125 loc) · 3.07 KB
/
Shuffling_Parities.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
//Shuffling_Parities
//https://www.codechef.com/SEPT21C/problems/SHUFFLIN
//#include<bits/stdc++.h>
#include<vector>
//#include<queue>
//#include<stack>
//#include<set>
//#include<map>
//#include<unordered_set>
//#include<unordered_map>
//#include<deque>
//#include<utility>
//#include<priority_queue>
#include<iostream>
#include<algorithm>
#include<string>
//#include<stdlib.h>
//#include<math.h>
//#include<time.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef pair<ll, ll> pll;
typedef pair<string, string> pss;
typedef vector<ii> vii;
typedef vector<vi> vvi;
typedef vector<vii> vvii;
typedef vector<ll> vl;
typedef vector<vl> vvl;
#define MAX INT_MAX
#define MIN INT_MIN
#define all(x) x.begin(), x.end()
// loop
#define fo(a, b, c) for (int(a) = (b); (a)<(c); ++(a))
#define foe(a, b, c) for (int(a) = (b); (a)<=(c); ++(a))
#define foge(a, b, c) for (int(a) = (b); (a)>=(c); --(a))
#define fosq(a, b, c) for (int(a) = (b); (a)*(a) <= (c); ++(a))
#define foc(a, b, c) for (char(a) = (b); (a)<(c); ++(a))
#define foce(a, b, c) for (char(a) = (b); (a)<=(c); ++(a))
#define foat(a, b) for (auto &(a) : (b))
#define foall(a, b) for (auto (a) : (b))
#define range(i, n) fo(i, 0, n)
// util
#define sqr(x) ((x) * (x))
#define minele(a) *min_element(all(a))
#define maxele(a) *max_element(all(a))
#define sum(a) accumulate(all(a), 0)
//driver code
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL);
int Test; cin >> Test;
while(Test--) {
//solution start
int n, s = 0; cin>>n;
if(n%2==0) {
int o = n/2, e = n/2;
while(o>0 && e>0) {
int x;
cin>>x;
if(x%2==0) {
e--;
s++;
}
else {
o--;
s++;
}
}
while(o>0) {
int x;
cin>>x;
if(x%2!=0) {
s++;
}
o--;
}
while(e>0){
int x;
cin>>x;
if(x%2==0) {
s++;
}
e--;
}
}
else {
int o = n/2, e = n/2 + 1;
while(o>0 && e>0) {
int x;
cin>>x;
if(x%2==0) {
e--;
s++;
}
else {
o--;
s++;
}
}
while(o>0) {
int x;
cin>>x;
if(x%2!=0) {
s++;
}
o--;
}
while(e>0){
int x;
cin>>x;
if(x%2==0) {
s++;
}
e--;
}
}
cout<<s<<"\n";
//solution end
}
return 0;
}