-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHamiltonianFlights.java
51 lines (42 loc) · 1.37 KB
/
HamiltonianFlights.java
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
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashSet;
public class HamiltonianFlights {
static ArrayList<ArrayList<Integer>> al = new ArrayList<>();
static HashSet<Integer> vis = new HashSet<>();
static long ans = 0;
static int n;
static long mod = 1000000007;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s[] = br.readLine().split(" ");
n = Integer.parseInt(s[0]);
int m = Integer.parseInt(s[1]);
for(int i = 0; i < n; i++) {
al.add(new ArrayList<>());
}
for(int i = 0; i < m; i++) {
String str[] = br.readLine().split(" ");
int u = Integer.parseInt(str[0]) - 1;
int v = Integer.parseInt(str[1]) - 1;
al.get(u).add(v);
}
dfs(0);
System.out.println(ans);
}
public static void dfs(int node) {
if(node == n-1 && vis.size() == n-1) {
ans = (ans + 1) % mod;
return;
}
vis.add(node);
for(int v : al.get(node)) {
if(!vis.contains(v)) {
dfs(v);
}
}
vis.remove(node);
}
}