This repository has been archived by the owner on Oct 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 258
/
B_Odd_Swap_Sort.cpp
121 lines (114 loc) Β· 2.31 KB
/
B_Odd_Swap_Sort.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
//πππππππ€β£β£β£β£β£dark_coderβ£β£β£β£β£π€ππππππ
#include <bits/stdc++.h>
using namespace std;
#define IOS \
ios::sync_with_stdio(0); \
cin.tie(0); \
cout.tie(0);
#define all(x) (x).begin(), (x).end()
#define li long long int
#define pi pair<int, int>
#define lcm(a, b) (a / __gcd(a, b) * b)
const long long INF = 1e9 + 7;
const long long MOD = 998244353;
long long power(long long a, long long b)
{
long ans = 1;
while (b > 0)
{
if (b & 1)
ans = (ans * a) % INF;
a = (a * a) % INF;
b >>= 1;
}
return ans % INF;
}
bool ck(vector<int> o, vector<int> os, vector<int> e, vector<int> es)
{
for (int i = 0; i < os.size(); i++)
{
if (o[i] != os[i])
{
// cout << os[i]<<' '<<o[i]<<' ';
return 0;
}
}
for (int i = 0; i < es.size(); i++)
{
if (e[i] != es[i])
{
// cout << es[i]<<' '<<e[i]<<' ';
return 0;
}
}
return 1;
}
bool allsame(vector<int> v)
{
if (v.size() <= 1)
return 1;
for (int i = 1; i < v.size(); i++)
{
if (v[i] != v[i - 1])
return 0;
}
return 1;
}
bool allxor(vector<int> v)
{
for (int i = 1; i < v.size(); i++)
if (v[i] % 2 != v[i - 1] % 2)
return 0;
return 1;
}
int solve()
{
int n;
cin >> n;
vector<int> v(n), odd, even, odds, evens;
for (int i = 0; i < n; i++)
{
cin >> v[i];
if (v[i]%2)
odd.push_back(v[i]);
else
even.push_back(v[i]);
}
odds = odd;
evens = even;
sort(all(odds));
sort(all(evens));
if (allsame(v))
{
cout << "Yes\n";
return 0;
}
auto srt=v;
sort(all(srt));
if(srt==v){
cout<<"YES\n";
return 0;
}
if (allxor(v))
{
cout << "No\n";
return 0;
}
if (even!=evens||odd!=odds)
{
cout << "NO\n";
return 0;
}
cout << "Yes\n";
return 0;
}
int main()
{
IOS int t;
cin >> t;
while (t--)
{
solve();
}
return 0;
}