Can anybody please tell me how do i approach this question Two-Buttons using BFS. I know how to do this other way but not using BFS(new to graph algorithms :) ).And why did we use BFS not DFS.In what scenario we use DFS and in What BFS.Thanks
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | adamant | 157 |
6 | awoo | 157 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | djm03178 | 153 |
Can anybody please tell me how do i approach this question Two-Buttons using BFS. I know how to do this other way but not using BFS(new to graph algorithms :) ).And why did we use BFS not DFS.In what scenario we use DFS and in What BFS.Thanks
Name |
---|
In every step you can choose multiple the current number by 2 or subtract 1. And for every new number you can do the same recursively.
Example (First input):
Input:
4 6
Output:
2
Using BFS you can found the shortest path from 4 to 6 in this example is 2.
Thanks a lot..But why did you use BFS ?You could have used DFS instead
DFS doesn't work, because the first goal you reach in your DFS tree is not necessarily optimal.
Suppose say, you find the goal node in your DFS tree at depth k, but it is certainly possible that there exists another goal node located at depth < k. You just haven't explored that goal yet.