-
Notifications
You must be signed in to change notification settings - Fork 2
/
684.redundant-connection.java
119 lines (103 loc) · 2.69 KB
/
684.redundant-connection.java
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
* @lc app=leetcode id=684 lang=java
*
* [684] Redundant Connection
*
* https://leetcode.com/problems/redundant-connection/description/
*
* algorithms
* Medium (57.54%)
* Likes: 1468
* Dislikes: 228
* Total Accepted: 101.4K
* Total Submissions: 175.8K
* Testcase Example: '[[1,2],[1,3],[2,3]]'
*
*
* In this problem, a tree is an undirected graph that is connected and has no
* cycles.
*
* The given input is a graph that started as a tree with N nodes (with
* distinct values 1, 2, ..., N), with one additional edge added. The added
* edge has two different vertices chosen from 1 to N, and was not an edge that
* already existed.
*
* The resulting graph is given as a 2D-array of edges. Each element of edges
* is a pair [u, v] with u < v, that represents an undirected edge connecting
* nodes u and v.
*
* Return an edge that can be removed so that the resulting graph is a tree of
* N nodes. If there are multiple answers, return the answer that occurs last
* in the given 2D-array. The answer edge [u, v] should be in the same format,
* with u < v.
* Example 1:
*
* Input: [[1,2], [1,3], [2,3]]
* Output: [2,3]
* Explanation: The given undirected graph will be like this:
* 1
* / \
* 2 - 3
*
*
* Example 2:
*
* Input: [[1,2], [2,3], [3,4], [1,4], [1,5]]
* Output: [1,4]
* Explanation: The given undirected graph will be like this:
* 5 - 1 - 2
* | |
* 4 - 3
*
*
* Note:
* The size of the input 2D-array will be between 3 and 1000.
* Every integer represented in the 2D-array will be between 1 and N, where N
* is the size of the input array.
*
*
*
*
*
* Update (2017-09-26):
* We have overhauled the problem description + test cases and specified
* clearly the graph is an undirected graph. For the directed graph follow up
* please see Redundant Connection II). We apologize for any inconvenience
* caused.
*
*/
// @lc code=start
class Solution {
public int[] findRedundantConnection(int[][] edges) {
return findRedundant(edges);
}
int[] findRedundant(int[][] edges){
int[] parents = new int[2001];
for(int i=0; i<parents.length;i++){
parents[i]=i;
}
for(int[] edge:edges){
int from = edge[0];
int to = edge[1];
if(find(parents,from) == find(parents,to)){
return edge;
}
union(parents,to,from);
}
return null;
}
int find(int[] parents,int vertex){
while(parents[vertex]!=vertex){
vertex = parents[vertex];
}
return vertex;
}
void union(int[] parents,int x,int y){
int root_x = find(parents,x);
int root_y = find(parents,y);
if(root_x == root_y)
return;
parents[root_y] = root_x;
}
}
// @lc code=end