-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMinimumGeneticMutation.java
70 lines (59 loc) · 2.1 KB
/
MinimumGeneticMutation.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// https://leetcode.com/problems/minimum-genetic-mutation
// T: O(B)
// S: O(1)
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Queue;
import java.util.Set;
public class MinimumGeneticMutation {
private record Info(String mutation, int steps) {}
private static final char[] GENES = new char[] {'A', 'G', 'C', 'T'};
// n = length of string (8), m = possible number of characters
// BFS, T: O(V + E) = O(nB + n^m * mn) S: O(n^m)
public static int minMutation(String startGene, String endGene, String[] bank) {
final Set<String> genePool = toSet(bank);
if (!genePool.contains(endGene)) {
return -1;
}
final Queue<Info> queue = new LinkedList<>() {{ add(new Info(startGene, 0)); }};
final Set<String> visited = new HashSet<>();
while (!queue.isEmpty()) {
final Info info = queue.poll();
if (visited.contains(info.mutation)) {
continue;
}
visited.add(info.mutation);
if (endGene.equals(info.mutation)) {
return info.steps;
}
for (String neighbour : validMutations(genePool, info.mutation)) {
queue.add(new Info(neighbour, info.steps + 1));
}
}
return -1;
}
// T: O(|s|), S: O(|s|)
private static List<String> validMutations(Set<String> genePool, String s) {
final List<String> result = new ArrayList<>();
for (int i = 0 ; i < s.length() ; i++) {
for (char c : GENES) {
final String mutation = s.substring(0, i) + c + s.substring(i + 1);
if (genePool.contains(mutation)) {
result.add(mutation);
}
}
}
return result;
}
// T: O(nB) S: O(nB)
private static Set<String> toSet(String[] bank) {
final Set<String> set = new HashSet<>();
Collections.addAll(set, bank);
return set;
}
}