-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSNCK1A19_CARDMGK.cpp
89 lines (78 loc) · 1.57 KB
/
SNCK1A19_CARDMGK.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
#include<bits/stdc++.h>
using namespace std;
#define FASTER ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
const int sz = 1000010;
bool ans;
int i, j;
int pivot;
int t, n, bar;
int arr[sz];
int dummArr[sz];
void printDummyArray()
{
for(int i=0; i<n; i++)
{
cout << dummArr[i] << " ";
}
cout << endl;
}
int main()
{
FASTER;
cin >> t;
while(t--)
{
cin >> n;
for(i=0; i<n; i++)
{
cin >> arr[i];
}
pivot = bar = 0;
for(i=0; i<n-1; i++)
{
if(arr[i] > arr[i+1])
{
bar++;
pivot = i+1;
}
}
if(bar > 1)
{
ans = false;
}
else
{
for(i=pivot; i<n; i++)
{
dummArr[i-pivot] = arr[i];
//cout << i-pivot << " " << i << endl;
}
//cout << "_____________________________" << endl;
for(i=0, j=n-pivot; i<pivot; i++, j++)
{
dummArr[j] = arr[i];
//cout << j << " " << i << endl;
}
//printDummyArray();
ans = true;
for(i=0; i<n-1; i++)
{
if(dummArr[i] > dummArr[i+1])
{
ans = false;
break;
}
}
}
if(ans)
{
cout << "YES";
}
else
{
cout << "NO";
}
cout << "\n";
}
return 0;
}