-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathYet Another Sorting Problem.cpp
123 lines (94 loc) · 3.68 KB
/
Yet Another Sorting Problem.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
/*
Solution by Rahul Surana
***********************************************************
Petya has an array of integers a1,a2,…,an. He only likes sorted arrays. Unfortunately, the given array could be arbitrary, so Petya wants to sort it.
Petya likes to challenge himself, so he wants to sort array using only 3-cycles. More formally, in one operation he can pick 3 pairwise distinct indices i, j, and k (1≤i,j,k≤n) and apply i→j→k→i cycle to the array a. It simultaneously places ai on position j, aj on position k, and ak on position i, without changing any other element.
For example, if a is [10,50,20,30,40,60] and he chooses i=2, j=1, k=5, then the array becomes [50–––,40–––,20,30,10–––,60].
Petya can apply arbitrary number of 3-cycles (possibly, zero). You are to determine if Petya can sort his array a, i. e. make it non-decreasing.
Input:
Each test contains multiple test cases. The first line contains the number of test cases t (1≤t≤5⋅105). Description of the test cases follows.
The first line of each test case contains a single integer n (1≤n≤5⋅105) — the length of the array a.
The second line of each test case contains n integers a1,a2,…,an (1≤ai≤n).
It is guaranteed that the sum of n over all test cases does not exceed 5⋅105.
Output:
For each test case, print "YES" (without quotes) if Petya can sort the array a using 3-cycles, and "NO" (without quotes) otherwise. You can print each letter in any case (upper or lower).
***********************************************************
*/
#include <bits/stdc++.h>
#define ll long long
#define vl vector<ll>
#define vi vector<int>
#define pi pair<int,int>
#define pl pair<ll,ll>
#define all(a) a.begin(),a.end()
#define mem(a,x) memset(a,x,sizeof(a))
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define FOR(i,a) for(int i = 0; i < a; i++)
#define trace(x) cerr<<#x<<" : "<<x<<endl;
#define trace2(x,y) cerr<<#x<<" : "<<x<<" | "<<#y<<" : "<<y<<endl;
#define trace3(x,y,z) cerr<<#x<<" : "<<x<<" | "<<#y<<" : "<<y<<" | "<<#z<<" : "<<z<<endl;
#define fast_io std::ios::sync_with_stdio(false),cin.tie(NULL),cout.tie(NULL)
using namespace std;
template <typename T>
struct BIT{
int N;
vector<T> bit;
BIT(int N): N(N), bit(N+1,0) {
}
T sum(int i){
T ans = 0;
while(i>0){
ans += bit[i];
i -= (i & -i);
}
return ans;
}
void add(int index, T num){
while(index <= N){
bit[index] += num;
index += (index & -index);
}
}
void bprint(){
for(int i = 1; i <= N; i++){
cout << bit[i] <<" ";
}
cout << "\n";
}
T sum(int l, int r){
return sum(r) - sum(l);
}
};
// vector<vector<int>> dp;
// int ans = 0;
int main()
{
fast_io;
int t;
cin >> t;
while(t--) {
int n;
cin >> n;
int ar[n+1];
vector<int> b(n);
FOR(i,n) { cin >> ar[i+1]; b[i]= ar[i+1]; }
sort(b.begin(),b.end());
bool f = false;
for(int i =1; i < n ; i++){
if(b[i] == b [ i-1]) { f = true; break; }
}
if(f) { cout << "YES\n"; continue; }
else {
ll ans = 0;
BIT<int> x(n+1);
for(int i = 1; i <=n; i++){
ans += x.sum(ar[i],n);
x.add(ar[i],1);
}
cout << (ans%2 == 1? "NO": "YES") <<"\n";
}
}
}