Problem Description
A competition consists of n
players numbered from 0
to n - 1
. You are given an integer array skills
of size n
and a positive integer k
, where skills[i]
is the skill level of player i
. All integers in skills
are unique. All players are standing in a queue in order from player 0
to player n - 1
. The competition process is as follows: The first two players in the queue play a game, and the player with the higher skill level wins. After the game, the winner stays at the beginning of the queue, and the loser goes to the end of it. The winner of the competition is the first player who wins k
games in a row. Return the initial index of the winning player.
Key Insights
- Players compete in pairs based on their order in the queue.
- The winner remains at the front of the queue, while the loser moves to the back.
- The competition continues until one player wins
k
consecutive games. - The skill levels are unique, allowing for a straightforward comparison of players' abilities.
Space and Time Complexity
Time Complexity: O(n + k)
Space Complexity: O(n)
Solution
We can simulate the competition using a queue data structure to manage the players' order. We will iterate through the games by comparing the skill levels of the first two players in the queue. The winner is determined based on their skill levels, and we keep track of the number of consecutive wins for the current winner. If a player wins k
games in a row, we return their initial index. We can use a deque for efficient popping and appending operations.