2924. Find Champion II
Difficulty: Medium
Topics: Graph
There are n teams numbered from 0 to n - 1 in a tournament; each team is also a node in a DAG.
You are given the integer n and a 0-indexed 2D integer array edges of length m representing the DAG, where >dges[i] = [ui, vi] indicates that there is a directed edge from team ui to team vi in the graph.
A directed edge from a to b in the graph means that team a is stronger than team b and team b is weaker than team a.
Team a will be the champion of the tournament if there is no team b that is stronger than team a.
Return the team that will be the champion of the tournament if there is a unique champion, otherwise, return -1.
Notes
- A cycle is a series of nodes
a1, a2, ..., an, an+1such that nodea1is the same node as nodean+1, the nodesa1, a2, ..., anare distinct, and there is a directed edge from the nodeaito nodeai+1for everyiin the range[1, n]. - A DAG is a directed graph that does not have any cycle.
Example 1:
- Input: n = 3, edges = [[0,1],[1,2]]
- Output: 0
- Explanation: Team 1 is weaker than team 0. Team 2 is weaker than team 1. So the champion is team 0.
Example 2:
- Input: n = 4, edges = [[0,2],[1,3],[1,2]]
- Output: -1
- Explanation: Team 2 is weaker than team 0 and team 1. Team 3 is weaker than team 1. But team 1 and team 0 are not weaker than any other teams. So the answer is -1.
Constraints:
1 <= n <= 100m == edges.length0 <= m <= n * (n - 1) / 2edges[i].length == 20 <= edge[i][j] <= n - 1edges[i][0] != edges[i][1]- The input is generated such that if team
ais stronger than teamb, teambis not stronger than teama. - The input is generated such that if team
ais stronger than teamband teambis stronger than teamc, then teamais stronger than teamc.
Hint:
- The champion(s) should have in-degree
0in the DAG.
Solution:
We need to identify the team(s) with an in-degree of 0 in the given Directed Acyclic Graph (DAG). Teams with no incoming edges represent teams that no other team is stronger than, making them candidates for being the champion. If there is exactly one team with an in-degree of 0, it is the unique champion. If there are multiple or no such teams, the result is -1.
Let's implement this solution in PHP: 2924. Find Champion II
<?php
/**
* @param Integer $n
* @param Integer[][] $edges
* @return Integer
*/
function findChampion($n, $edges) {
// Initialize in-degrees for all teams
$inDegree = array_fill(0, $n, 0);
// Calculate the in-degree for each team
foreach ($edges as $edge) {
$inDegree[$edge[1]]++;
}
// Find teams with in-degree 0
$candidates = [];
for ($i = 0; $i < $n; $i++) {
if ($inDegree[$i] == 0) {
$candidates[] = $i;
}
}
// If exactly one team has in-degree 0, return it; otherwise, return -1
return count($candidates) === 1 ? $candidates[0] : -1;
}
// Example 1
$n1 = 3;
$edges1 = [[0, 1], [1, 2]];
echo "Example 1 Output: " . findChampion($n1, $edges1) . PHP_EOL; // Output: 0
// Example 2
$n2 = 4;
$edges2 = [[0, 2], [1, 3], [1, 2]];
echo "Example 2 Output: " . findChampion($n2, $edges2) . PHP_EOL; // Output: -1
?>
Explanation:
-
Input Parsing:
-
nis the number of teams. -
edgesis the list of directed edges in the graph.
-
-
Initialize In-degree:
- Create an array
inDegreeof sizeninitialized to0.
- Create an array
-
Calculate In-degree:
- For each edge
[u, v], increment the in-degree ofv(teamvhas one more incoming edge).
- For each edge
-
Find Candidates:
- Iterate through the
inDegreearray and collect indices where the in-degree is0. These indices represent teams with no other stronger teams.
- Iterate through the
-
Determine Champion:
- If exactly one team has in-degree
0, it is the unique champion. - If multiple teams or no teams have in-degree
0, return-1.
- If exactly one team has in-degree
Example Walkthrough
Example 1:
- Input:
n = 3,edges = [[0, 1], [1, 2]] - In-degree:
[0, 1, 1] - Teams with in-degree
0:[0] - Output:
0(Team0is the unique champion).
Example 2:
- Input:
n = 4,edges = [[0, 2], [1, 3], [1, 2]] - In-degree:
[0, 0, 2, 1] - Teams with in-degree
0:[0, 1] - Output:
-1(There are multiple potential champions).
Complexity Analysis
-
Time Complexity:
- Computing in-degrees: O(m), where m is the number of edges.
- Checking teams: O(n), where n is the number of teams.
- Total: O(n + m).
-
Space Complexity:
-
inDegreearray: O(n).
-
This solution is efficient and works within the given constraints.
Contact Links
If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks 😍. Your support would mean a lot to me!
![]()
If you want more helpful content like this, feel free to follow me:


Top comments (0)