-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathWord_Ladder_II.cpp
254 lines (238 loc) · 8.23 KB
/
Word_Ladder_II.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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
// optimized BFS. still TLE :/
class Solution {
struct wordNode {
string word;
wordNode* parent;
int level;
wordNode(string sWord, wordNode* pParent, int iLevel) {
word = sWord;
parent = pParent;
level = iLevel;
}
};
public:
vector<vector<string>> findLadders(string beginWord, string endWord, unordered_set<string> &wordList) {
vector<vector<string>> result;
wordList.insert(endWord);
queue<wordNode*> Q;
unordered_set<string> visited;
Q.push(new wordNode(beginWord, nullptr, 1));
int depth = 0;
while(!Q.empty()) {
wordNode* node = Q.front();
string word = node->word;
int currLevel = node->level;
Q.pop();
if(depth > 0 and currLevel > depth) {
break;
}
if(word == endWord) {
depth = currLevel;
vector<string> path(depth);
int indx = depth;
path[--indx] = endWord;
while(node->parent) {
path[--indx] = node->parent->word;
node = node->parent;
}
result.push_back(path);
continue;
}
visited.insert(word);
string neigh = word;
for(int i = 0 ; i < neigh.length(); ++i) {
char tmp = neigh[i];
for(char ch = 'a'; ch <= 'z'; ++ch) {
neigh[i] = ch;
if(wordList.find(neigh) != wordList.end() and visited.find(neigh) == visited.end()) {
Q.push(new wordNode(neigh, node, currLevel + 1));
}
}
neigh[i] = tmp;
}
}
return result;
}
};
// modified BFS. still TLE :(
class Solution {
void findAdjList(string curr, unordered_set<string>& wordList, vector<string>& neighs) {
for(int i = 0; i < curr.length(); ++i) {
char tmp = curr[i];
for(char ch = 'a'; ch <= 'z'; ++ch) {
curr[i] = ch;
if(wordList.find(curr) != wordList.end()) {
neighs.push_back(curr);
}
}
curr[i] = tmp;
}
}
bool isNextState(string const& word1, string const& word2) {
bool flag = false;
if(word1.length() != word2.length()) return false;
for(int i = 0; i < word1.length(); ++i) {
if(word1[i] != word2[i]) {
if(flag) {
flag = false;
break;
}
flag = true;
}
}
return flag;
}
void findShortestPaths(string node, int indx, unordered_map<string, unordered_set<string>>& parents, vector<string>& solution, vector<vector<string>>& result) {
if(parents[node].find(node) != parents[node].end()) {
assert(indx == 0);
solution[indx] = node;
result.push_back(solution);
return;
}
solution[indx] = node;
for(auto parentIter = parents[node].begin(); parentIter != parents[node].end(); ++parentIter) {
findShortestPaths(*parentIter, indx - 1, parents, solution, result);
}
}
public:
vector<vector<string>> findLadders(string beginWord, string endWord, unordered_set<string> &wordList) {
queue<string> Q;
unordered_map<string, bool> visited;
unordered_map<string, int> level;
unordered_map<string, unordered_set<string>> parents;
Q.push(beginWord);
level[beginWord] = 1;
parents[beginWord].insert(beginWord);
int depth = INT_MAX;
while(!Q.empty()) {
string node = Q.front();
visited[node] = true;
Q.pop();
if(level[node] > depth) {
break;
}
if(level[node] == depth and node != endWord) {
continue;
}
if(isNextState(node, endWord)) {
level[endWord] = level[node] + 1;
parents[endWord].insert(node);
Q.push(endWord);
depth = level[endWord];
continue;
}
vector<string> neighs;
findAdjList(node, wordList, neighs);
for(int i = 0; i < (int)neighs.size(); ++i) {
string neigh = neighs[i];
if(level[neigh] > 0) {
if(level[node] >= level[neigh]) {
continue;
}
}
if(!visited[neigh]) {
Q.push(neigh);
parents[neigh].insert(node);
level[neigh] = level[node] + 1;
if(neigh == endWord) {
depth = level[neigh];
}
}
}
}
vector<vector<string>> result;
if(depth == INT_MAX) return result;
vector<string> solution(depth, "");
findShortestPaths(endWord, depth - 1, parents, solution, result);
return result;
}
};
// BFS + DFS TLE
class Solution {
public:
void findAdjacents(string curr, unordered_set<string> &dict, vector<string> &nexts) {
for(int i = 0, n = curr.length(); i < n; ++i) {
char tmp = curr[i];
for(char ch = 'a'; ch <= 'z'; ++ch) {
curr[i] = ch;
if(dict.find(curr) != dict.end()) {
nexts.push_back(curr);
}
}
curr[i] = tmp;
}
}
bool isNextState(string const& u, string const& v) {
bool flag = false;
for(int i = 0, n = u.length(); i < n; ++i) {
if(u[i] != v[i] ) {
if(flag) return false;
flag = true;
}
}
return flag;
}
void dfs(string curr, int depth, int limit, string end, unordered_set<string> &dict, unordered_map <string, bool> &visited, vector<string> &solution, vector<vector<string> > &result) {
if(curr == end) {
result.push_back(solution);
return;
}
if(isNextState(curr, end) and depth < limit) {
solution.push_back(end);
result.push_back(solution);
solution.pop_back();
return;
}
if(depth == limit) return;
vector<string> nexts;
findAdjacents(curr, dict, nexts);
for(auto it = nexts.begin(); it != nexts.end(); ++it) {
string neigh = (*it);
if(!visited[neigh]) {
visited[neigh] = true;
solution.push_back(neigh);
dfs(neigh, depth + 1, limit, end, dict, visited, solution, result);
visited[neigh] = false;
solution.pop_back();
}
}
}
vector<vector<string>> findLadders(string start, string end, unordered_set<string> &dict) {
vector<vector<string> > result;
int shortestPathLen = -1;
unordered_map <string, bool> visited;
queue <pair<string, int> > Q;
Q.push(make_pair(start, 1));
visited[start] = true;
while(!Q.empty()) {
string curr = Q.front().first;
int level = Q.front().second;
Q.pop();
if( isNextState(curr, end) ) {
shortestPathLen = level + 1;
break;
}
if(curr == end) {
shortestPathLen = level;
break;
}
vector<string> nexts;
findAdjacents(curr, dict, nexts);
for(auto it = nexts.begin(); it != nexts.end(); ++it) {
if(!visited[*it]) {
visited[*it] = true;
Q.push(make_pair(*it, level + 1));
}
}
}
if(shortestPathLen == -1) {
return result;
}
vector<string> solution;
visited = unordered_map <string, bool> ();
visited[start] = true;
solution.push_back(start);
dfs(start, 1, shortestPathLen, end, dict, visited, solution, result);
return result;
}
};