-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package 인프런.Section07; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Scanner; | ||
|
||
public class 경로탐색_인접리스트 { | ||
|
||
static int n, m, answer = 0; | ||
static ArrayList<ArrayList<Integer>> graph; | ||
static int[] check; | ||
|
||
public void DFS(int v) { | ||
if(v==n) answer++; | ||
else { | ||
for(int nv : graph.get(v)) { | ||
if(check[nv] == 0) { | ||
check[nv] = 1; | ||
DFS(nv); | ||
check[nv] = 0; | ||
} | ||
} | ||
} | ||
} | ||
|
||
public static void main(String[] args) { | ||
Scanner scanner = new Scanner(System.in); | ||
|
||
경로탐색_인접리스트 t = new 경로탐색_인접리스트(); | ||
|
||
n = scanner.nextInt(); | ||
m = scanner.nextInt(); | ||
|
||
graph = new ArrayList<>(); | ||
|
||
for(int i = 0; i <= n; i++) { | ||
graph.add(new ArrayList<>()); | ||
} | ||
|
||
check = new int[n+1]; | ||
|
||
for(int i = 0; i < m; i++) { | ||
int a = scanner.nextInt(); | ||
int b = scanner.nextInt(); | ||
graph.get(a).add(b); | ||
} | ||
check[1] = 1; | ||
t.DFS(1); | ||
System.out.print(answer); | ||
} | ||
} |