Editorial for Google Code Jam '22 Qualification Round Problem D - Chain Reactions
Submitting an official solution before solving the problem yourself is a bannable offence.
Test Set 1
In Test Set 1 there are very few modules. This means that we can try all
possible orders for the manual initiators, simulate the rules as explained in
the statement to get the overall fun yielded by each order, and keep the
maximum result from among those. Notice that modules that are pointed at the
abyss and not pointed at by any other module contribute their own fun to the
total no matter the order. Therefore, we can assume they all trigger in any
specific order at the beginning. This brings down the number of orders to try
from
Test Set 2
We can start by modeling the problem. We can see the input as a rooted forest where the parenting relationship models the pointed at relationship. Root nodes are modules that are pointed at the abyss.
As is often the case for problems on trees, we can solve this one efficiently with a divide-and-conquer approach, and the aid of memoization/dynamic programming to keep the running time small.
Notice we can solve each tree (connected component) in the forest independently. Then, we can notice that the root of the tree is triggered by the first manual initiator. So, we can try all possibilities for the first manual initiator and eliminate the path between them and the root. That leaves a lot of separated subtrees that we can solve recursively.
Formally, let
The domain of
Test Set 3
To solve Test Set 3 we continue on our modelling from Test Set 2. We observe
that the answer for
Identifying
Comments