-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10451.cpp
59 lines (54 loc) · 946 Bytes
/
10451.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
/*
입력
첫째 줄에 테스트 케이스의 개수 T가 주어진다. 각 테스트 케이스의 첫째 줄에는 순열의 크기 N (2 ≤ N ≤ 1,000)이 주어진다. 둘째 줄에는 순열이 주어지며, 각 정수는 공백으로 구분되어 있다.
출력
각 테스트 케이스마다, 입력으로 주어진 순열에 존재하는 순열 사이클의 개수를 출력한다.
*/
#include<iostream>
#include<queue>
#include<cstring>
using namespace std;
int n;
int tb[1000] = { 0, };
int vi[1000] = { 0, };
queue<int> q;
int bfs()
{
int cnt = 0,ns;
for (int i = 0; i < n; i++)
{
if (vi[i] == 0)
{
q.push(i);
vi[i] = ++cnt;
while (!q.empty())
{
ns = q.front();
q.pop();
if (vi[tb[ns]] == 0) {
q.push(tb[ns]);
vi[tb[ns]] = cnt;
}
}
}
}
return cnt;
}
int main()
{
int x = 0;
cin >> x;
for (int tc = 0; tc < x; tc++)
{
cin >> n;
int tm = 0;
for (int i = 0; i < n; i++)
{
cin >> tm;
tb[i] = tm - 1;
}
memset(vi, 0, sizeof(vi));
cout << bfs() << endl;
}
return 0;
}