📃 문제
[BOJ] 순열 사이클 🔗링크
❓ 문제 접근
- DFS를 사용하면 완전 탐색 및 사이클을 구할 수 있다.
(풀어낸 방법은 while문을 이용한 DFS인데... 풀면서 DFS라는 자각을 하지 못하면서 풀었다.)
🧠 풀이
#include <iostream>
#include <cstring>
using namespace std;
int main(int argc, const char * argv[]) {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int T;
int arr[1002] = {0,};
int checked[1002] = {0,};
cin >> T;
for(int t=0; t<T; t++){
int per_length;
cin >> per_length;
memset(checked, 0, (per_length + 1) * sizeof(int));
for(int i=1; i<=per_length; i++){
cin >> arr[i];
}
int cycle = 0;
for(int i=1; i<=per_length; i++){
int idx = i;
if(!checked[idx]){
do{
checked[idx] = 1;
idx = arr[idx];
}while(!checked[idx]);
cycle++;
}
}
cout << cycle << "\n";
}
return 0;
}