Premium Only Content

2924. Find Champion II
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 edges[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+1 such that node a1 is the same node as node an+1, the nodes a1, a2, ..., an are distinct, and there is a directed edge from the node ai to node ai+1 for every i in 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 <= 100
m == edges.length
0 <= m <= n * (n - 1) / 2
edges[i].length == 2
0 <= edge[i][j] <= n - 1
edges[i][0] != edges[i][1]
The input is generated such that if team a is stronger than team b, team b is not stronger than team a.
The input is generated such that if team a is stronger than team b and team b is stronger than team c, then team a is stronger than team c.
class Solution {
public:
int findChampion(int n, vector<vector<int>>& edges) {
vector<bool> vec(n, true);
for(vector<int>& edge : edges)
vec[edge[1]] = false;
int val=0,cnt=0;
for(int i=0; i<n; i++){
if(vec[i]){
val=i;
cnt++;
}
}
if(cnt > 1)
return -1;
return val;
}
};
-
1:14:56
Lara Logan
14 hours agoTHE ONLYFANS SCAM: Victoria Sinis Breaks Down the Dangers and Lies Targeting Your Children | EP 40
37.5K6 -
3:02:51
Tundra Tactical
22 hours ago $0.28 earned{LIVE NOW} GunTuber Plays Battlefield 6...Terribly
11K3 -
40:50
The White House
3 hours agoPresident Trump Participates in a Bilateral Lunch with the President of Ukraine
23K23 -
54:57
Sean Unpaved
3 hours agoRodgers-Flacco TNF Showdown, CFB Week 8 Upsets, NFL Week 7 Edges, & Weekend Locks
26.9K -
2:05:45
The Culture War with Tim Pool
23 hours agoWokeness Is Dying, Conservatives Are Winning & Taking Back Entertainment | The Culture War Podcast
149K64 -
1:57:51
The Charlie Kirk Show
3 hours agoZelenskyy Gets to Know the King + Bolton Busted + NYC Showdown + AMA | Davis, McCoy | 10.17.2025
61.8K17 -
16:19
Neil McCoy-Ward
2 hours ago🚨 More Bank COLLAPSES Are On The Way... (AVOID These Banks!)
7.3K1 -
2:07:06
Side Scrollers Podcast
4 hours agoDiaper Furry Streamer Gets ONLY ONE DAY Suspension + Hasan PLAYS VICTIM + More | Side Scrollers
20.6K6 -
52:25
Steven Crowder
22 hours agoCAUGHT: Mamdani Campaign Admits Plans to Force NYPD to Defy ICE & Orchestrate Socialist Takeover
302K536 -
1:50:53
Nikko Ortiz
4 hours agoNEW Army Boot Camp In 2025... |Rumble Live
19.4K1