-
Notifications
You must be signed in to change notification settings - Fork 6
/
Reversort.cpp
69 lines (49 loc) · 1.05 KB
/
Reversort.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
#include <bits/stdc++.h>
using namespace std;
void reverse(int i, int j, int* a)
{
int x = i;
int y = j;
while(x<=y)
{
swap(a[x], a[y]);
x++;
y--;
}
}
int main()
{
ios_base::sync_with_stdio(false), cin.tie(nullptr);
int t;
cin >> t;
int caseNo = 0;
while(t--)
{
int n;
cin >> n;
int a[n];
for(int i=0; i<n; i++)
{
cin >> a[i];
}
long long ans = 0;
for(int i=0; i<n-1; i++)
{
int minIndex = n-1;
int minTerm = INT_MAX;
for(int j=n-1; j>=i; j--)
{
if(a[j]<minTerm)
{
minTerm = a[j];
minIndex = j;
}
}
reverse(i, minIndex, a);
ans += minIndex-i+1;
}
caseNo++;
cout << "Case #" << caseNo << ':' << " " << ans << endl;
}
return 0;
}