Problem Description
You are given an integer array receiver of length n and an integer k. n players are playing a ball-passing game. You choose the starting player, i. The game proceeds as follows: player i passes the ball to player receiver[i], who then passes it to receiver[receiver[i]], and so on, for k passes in total. The game's score is the sum of the indices of the players who touched the ball, including repetitions. Return the maximum possible score.
Key Insights
- The ball passing sequence can form cycles, making it essential to identify these cycles to optimize the score.
- For each possible starting player, we can compute the score for k passes, but due to the constraints, we need to avoid direct simulation for large k.
- Using properties of cycles and prefix sums allows us to compute the maximum score efficiently.
Space and Time Complexity
Time Complexity: O(n + m), where n is the number of players and m is the length of the cycle. Space Complexity: O(n), used for storing visited players and cycle information.
Solution
To solve the problem, we can use a combination of cycle detection and prefix sums:
- Iterate through each player to find the passing sequence and identify cycles.
- For each starting player, simulate the passing while keeping track of the score.
- If we encounter a cycle, calculate the contribution of the cycle based on how many more passes remain.
- Keep track of the maximum score encountered during the simulations.