Problem Description
Given n
teams numbered from 0
to n - 1
in a tournament represented as a directed acyclic graph (DAG), where each directed edge indicates that one team is stronger than another, return the champion team (the team that is not weaker than any other team) if there is a unique champion. Otherwise, return -1.
Key Insights
- The champion team is the team that has no incoming edges in the DAG.
- If more than one team has no incoming edges, there is no unique champion.
- The problem can be solved by counting the incoming edges for each team.
Space and Time Complexity
Time Complexity: O(n + m)
Space Complexity: O(n)
Solution
To solve the problem, we can use an array to keep track of the number of incoming edges (in-degrees) for each team. We'll iterate over the edges to populate this array. After that, we'll check how many teams have an in-degree of zero. If exactly one team has zero incoming edges, that team is the champion; otherwise, we return -1.