Problem Description
Alice and Bob are playing a fantasy battle game consisting of n rounds where they summon one of three magical creatures each round: a Fire Dragon, a Water Serpent, or an Earth Golem. If Alice's sequence of moves is given, determine how many distinct sequences Bob can use to beat Alice, where Bob's score must be strictly greater than Alice's score. Bob cannot summon the same creature in two consecutive rounds.
Key Insights
- Each creature has specific winning conditions against others (Fire Dragon beats Earth Golem, Water Serpent beats Fire Dragon, Earth Golem beats Water Serpent).
- Bob needs to strategically choose his moves based on Alice's sequence to gain more points.
- The sequences must also respect the constraint that Bob cannot choose the same creature consecutively.
- A dynamic programming approach can help track the possible winning sequences efficiently.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve the problem, we can use a dynamic programming approach. We maintain two arrays to keep track of the number of winning sequences Bob can have for each round, based on the last creature he summoned. For each round, we check Alice's move and update Bob's possible moves that can win against Alice's current creature. We also ensure that Bob does not repeat the same creature in consecutive rounds. Finally, we sum up all winning sequences that result in Bob having strictly more points than Alice.