Can anyone please explain the approach to this question ? The editorial is not clear.. If possible, can you mention about any other approach ? Here's the link: https://www.hackerrank.com/contests/hourrank-14/challenges/clues-on-a-binary-path
# | User | Rating |
---|---|---|
1 | jiangly | 3898 |
2 | tourist | 3840 |
3 | orzdevinwang | 3706 |
4 | ksun48 | 3691 |
5 | jqdai0815 | 3682 |
6 | ecnerwala | 3525 |
7 | gamegame | 3477 |
8 | Benq | 3468 |
9 | Ormlis | 3381 |
10 | maroonrk | 3379 |
# | User | Contrib. |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | Dominater069 | 161 |
4 | Um_nik | 159 |
4 | atcoder_official | 159 |
6 | djm03178 | 157 |
7 | adamant | 153 |
8 | luogu_official | 151 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
Can anyone please explain the approach to this question ? The editorial is not clear.. If possible, can you mention about any other approach ? Here's the link: https://www.hackerrank.com/contests/hourrank-14/challenges/clues-on-a-binary-path
Name |
---|
Where you don't understand? Let me know..
Brute Force i.e. simple DFS will give TLE. Here we need to use "Meet in the middle" problem solving technique. !
It is simple. Do "Depth Limited Search" from each node with depth l/2. You can do this recursively or iteratively with stack or queue. [ In the sample code they used queue ]. And keep track of the path.
Now see if 2 states collide then there is a solution ! You can do this by brute-forcing on the path and see if this path is valid. :)
[ The sample code that they have provided also seems weird to me. ]
The editorial is needlessly complicated. It is actually very easy to do it in O(N * D * 2^D).
For each path so far we store which nodes we can end such a path on: therefore in dp[pathlength][pathmask] we store a bitmask of what nodes we can end on. We can two long longs to store this bitmask as N <= 90.
We also keep a bitmask for edge[node][colour] which is a bitmask of all nodes which you can reach from node with a edge with that colour.
Then, for each state transition, we can update the appropriate values in O(1) by doing OR on the bitmasks of nodes.
Code with AC on Hackerrank: http://ideone.com/bTTrha
Great solution! Thanks alot :)