순열 그래프 내에서 순열 사이클이 몇개 있는지 구하는 문제이다.
#include <bits/stdc++.h>
using namespace std;
#define SIZE 1002
int board[SIZE];
bool vis[SIZE];
void DFS(int V)
{
vis[V] = 1;
int nxt = board[V];
if (!vis[nxt])
DFS(nxt);
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
int t;
cin >> t;
while (t--)
{
int n, cnt = 0;
cin >> n;
for (int i = 1; i <= n; ++i)
cin >> board[i];
for (int i = 1; i <= n; ++i)
{
if (!vis[i])
{
DFS(i);
cnt++;
}
}
cout << cnt << '\n';
fill(vis, vis + SIZE, 0);
}
}