433. Minimum Genetic Mutation
1. Description
A gene string can be represented by an 8-character long string, with choices from ‘A’, ‘C’, ‘G’, and ‘T’.
Suppose we need to investigate a mutation from a gene string startGene to a gene string endGene where one mutation is defined as one single character changed in the gene string.
- For example, “AACCGGTT” –> “AACCGGTA” is one mutation.
There is also a gene bank bank that records all the valid gene mutations. A gene must be in bank to make it a valid gene string.
Given the two gene strings startGene and endGene and the gene bank bank, return the minimum number of mutations needed to mutate from startGene to endGene. If there is no such a mutation, return -1.
Note that the starting point is assumed to be valid, so it might not be included in the bank.
2. Example
Example 1
Input: startGene = “AACCGGTT”, endGene = “AACCGGTA”, bank = [“AACCGGTA”]
Output: 1
Example 2
Input: startGene = “AACCGGTT”, endGene = “AAACGGTA”, bank = [“AACCGGTA”,“AACCGCTA”,“AAACGGTA”]
Output: 2
3. Constraints
- 0 <= bank.length <= 10
- startGene.length == endGene.length == bank[i].length == 8
- startGene, endGene, and bank[i] consist of only the characters [‘A’, ‘C’, ‘G’, ‘T’].
4. Solutions
Breadth-First Search && Hash
m = gene_bank.size(), n = start_gene.size()
Time complexity: O(mn)
Space complexity: O(mn)
class Solution {
public:
int minMutation(
const string &start_gene,
const string &end_gene,
const vector<string> &gene_bank) {
if (start_gene == end_gene) {
return 0;
}
if (find(gene_bank.begin(), gene_bank.end(), end_gene) == gene_bank.end()) {
return -1;
}
unordered_map<string, vector<string>> valid_genes;
for (const string &gene : gene_bank) {
for (int i = 0, n = gene.size(); i < n; ++i) {
string gene_template = gene;
gene_template[i] = '*';
valid_genes[gene_template].push_back(gene);
}
}
int step = 1;
queue<string> nodes{{start_gene}};
unordered_set<string> visited{{start_gene}};
while (!nodes.empty()) {
int count = nodes.size();
for (int i = 0; i < count; ++i) {
auto node = nodes.front();
nodes.pop();
for (int j = 0, n = node.size(); j < n; ++j) {
char backup = node[j];
node[j] = '*';
for (const auto &v : valid_genes[node]) {
if (v == end_gene) {
return step;
}
if (visited.find(v) == visited.end()) {
visited.insert(v);
nodes.push(v);
}
}
valid_genes[node].clear();
node[j] = backup;
}
}
++step;
}
return -1;
}
};