My DFS solution during contest, which passed all system tests except TLE for one. As a result, I received zero points.
This is not the first time that I am tempted to use a brutal force solution for a 450 / 500 problem that seemingly work but
ultimately fail due to inefficiency.
class XMarksTheSpot { |
Actually even with brutal force, there is better approaches without recursing (which is the root of many evils of time outs during contest).
We can just iterate through all the states explicitly and calculate the results at higher level while iterating. Here is a good example on how to do so.