forked from sameer2800/Lightoj-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1166-old_sorting.cpp
62 lines (48 loc) · 844 Bytes
/
1166-old_sorting.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
#include <bits/stdc++.h>
#define ll long long
#define MAX 100100
using namespace std;
ll arr[120];
ll mark[120];
vector <pair <ll, ll> > v;
ll n;
int global = 0;
void dfs(int par, int cur, int ans)
{
if (par == cur) {
global += (ans - 1);
return;
}
mark[cur] = 1;
dfs(par, arr[cur], ans + 1);
}
void epicdfs()
{
memset(mark, 0, sizeof mark);
global = 0;
for (int i = 1; i <= n; i++) {
if (mark[i] == 0) {
mark[i] = 1;
dfs(i, arr[i], 1);
}
}
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("/home/sameer/Documents/sameer/input.sam", "r", stdin);
#endif
ios_base::sync_with_stdio(false);
ll i, j, k, m, t, cont, a, b;
cin >> t;
ll cases = t;
while (t--) {
cin >> n ;
for (i = 1; i <= n; i++) {
cin >> arr[i];
}
epicdfs();
cout << "Case " << cases - t << ": " << global << endl;
}
return 0;
}