-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution2.cpp
38 lines (37 loc) · 1.33 KB
/
Solution2.cpp
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
class Solution {
public:
int ladderLength(string beginWord, string endWord, vector<string>& wordList) {
unordered_set<string> words(wordList.begin(), wordList.end());
if (!words.count(endWord)) return 0;
queue<string> q1{{beginWord}};
queue<string> q2{{endWord}};
unordered_map<string, int> m1;
unordered_map<string, int> m2;
m1[beginWord] = 0;
m2[endWord] = 0;
while (!q1.empty() && !q2.empty()) {
int t = q1.size() <= q2.size() ? extend(m1, m2, q1, words) : extend(m2, m1, q2, words);
if (t != -1) return t + 1;
}
return 0;
}
int extend(unordered_map<string, int>& m1, unordered_map<string, int>& m2, queue<string>& q, unordered_set<string>& words) {
for (int i = q.size(); i > 0; --i) {
string s = q.front();
int step = m1[s];
q.pop();
for (int j = 0; j < s.size(); ++j) {
char ch = s[j];
for (char k = 'a'; k <= 'z'; ++k) {
s[j] = k;
if (!words.count(s) || m1.count(s)) continue;
if (m2.count(s)) return step + 1 + m2[s];
m1[s] = step + 1;
q.push(s);
}
s[j] = ch;
}
}
return -1;
}
};