-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBJ10451.java
More file actions
82 lines (61 loc) · 1.45 KB
/
BJ10451.java
File metadata and controls
82 lines (61 loc) · 1.45 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
package javaBackjoon;
import java.util.Scanner;
import java.util.ArrayList;
public class BJ10451 {
static class Edge {
private boolean isVisited;
private int connectedEdge;
Edge() {
isVisited = false;
}
Edge(int val) {
isVisited = false;
connectedEdge = val;
}
public void setConnectedEdge(int val) {
connectedEdge = val;
}
public boolean isVisitedEdge() {
return isVisited;
}
public void setVisited() {
this.isVisited = true;
}
public int connectedEdgeIdx() {
return this.connectedEdge;
}
}
static int circleCnt = 0;
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner input = new Scanner(System.in);
int testCase = input.nextInt();
while(testCase-- != 0) {
ArrayList<Edge> graph = new ArrayList<Edge>();
int edgeCnt = input.nextInt();
for(int i = 0; i < edgeCnt; i++) {
graph.add(new Edge(input.nextInt()));
}
for(int i = 0; i < edgeCnt; i++) {
if(graph.get(i).isVisitedEdge()) {
continue;
}
else {
DFS(graph, i);
circleCnt++;
}
}
System.out.println(circleCnt);
circleCnt = 0;
}
input.close();
}
public static void DFS(ArrayList<Edge> graph, int idx) {
if(graph.get(idx).isVisitedEdge()) {
return;
}
graph.get(idx).setVisited();
// connected edge number should subtract one because list index start 0
DFS(graph, graph.get(idx).connectedEdgeIdx() - 1);
}
}