The Indian Engineer

Problem 2924 Find Champion II

Posted on 5 mins

Graph

Problem Statement

Link - Problem 2924

Question

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

 

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:

Solution

class Solution {
public:
    int findChampion(int n, vector<vector<int>>& edges) {
        vector<int> in_degree(n,0);
        for(auto edge:edges)
            in_degree[edge[1]]++;

        int champion = -1, count = 0;
        for(int i = 0; i<n; i++)
            if(in_degree[i]==0){
                count++;
                champion = i;
            }

        return count>1 ? -1:champion;
    }
};

Complexity Analysis

| Algorithm                         | Time Complexity | Space Complexity |
| --------------------------------- | --------------- | ---------------- |
| Directed Graph In-Degree Analysis | O(n)            | O(n)             |

Explanation

1. Intuition

2. Implementation


Complexity Analysis

Time Complexity:

Space Complexity:


Footnote

This question is rated as Medium difficulty.

Hints

The champion(s) should have in-degree 0 in the DAG.