-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path2924-find-champion-ii.rb
72 lines (59 loc) · 2.46 KB
/
2924-find-champion-ii.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# frozen_string_literal: true
# 2924. Find Champion II
# https://leetcode.com/problems/find-champion-ii
# Medium
=begin
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.
=end
# @param {Integer} n
# @param {Integer[][]} edges
# @return {Integer}
def find_champion(n, edges)
is_undefeated = Array.new(n, true)
edges.each do |winner, loser|
is_undefeated[loser] = false
end
champion = -1
champion_count = 0
n.times do |team|
if is_undefeated[team]
champion = team
champion_count += 1
end
end
champion_count == 1 ? champion : -1
end
# **************** #
# TEST #
# **************** #
require "test/unit"
class Test_sliding_puzzle < Test::Unit::TestCase
def test_
assert_equal 0, find_champion(3, [[0, 1], [1, 2]])
assert_equal(-1, find_champion(4, [[0, 2], [1, 3], [1, 2]]))
end
end