FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
coding-Interview/ConnectingCitiesWithMinimumCost.java at master · arjunmullick/coding-Interview · GitHub
arjunmullick
/
coding-Interview
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
3
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
coding-Interview
/
ConnectingCitiesWithMinimumCost.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
74 lines (50 loc) · 1.5 KB
Breadcrumbs
coding-Interview
/
ConnectingCitiesWithMinimumCost.java
Copy path
File metadata and controls
74 lines (50 loc) · 1.5 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/**
https://leetcode.com/problems/connecting-cities-with-minimum-cost/
Exmaple
N = 4
connections = [[1,2,1],[1,3,2],[3,4,4],[1,4,3]]
**/
class
Solution
{
public
int
minimumCost
(
int
N
,
int
[][]
connections
) {
//sort by weight , min weight as first so to choose minimum path
Arrays
.
sort
(
connections
, (
a
,
b
) -> (
a
[
2
]-
b
[
2
]));
//boolean visited[] = new boolean[N+1];
UnionFind
uf
=
new
UnionFind
(
N
+
1
);
int
totalCost
=
0
;
for
(
int
[]
conn
:
connections
){
int
a
=
conn
[
0
];
int
b
=
conn
[
1
];
int
w
=
conn
[
2
];
if
(
uf
.
merge
(
a
,
b
)){
totalCost
+=
w
;
}
}
for
(
int
i
=
2
;
i
<
N
+
1
;
i
++){
if
(
uf
.
find
(
i
) !=
uf
.
find
(
i
-
1
))
return
-
1
;
}
return
totalCost
;
}
}
class
UnionFind
{
int
[]
parent
;
public
UnionFind
(
int
n
){
parent
=
new
int
[
n
];
for
(
int
i
=
0
;
i
<
n
;
i
++){
parent
[
i
] =
i
;
}
}
//retrun parent
public
int
find
(
int
a
){
while
(
parent
[
a
] !=
a
){
a
=
parent
[
a
];
}
return
a
;
}
public
boolean
merge
(
int
a
,
int
b
){
int
parentA
=
find
(
a
);
int
parentB
=
find
(
b
);
if
(
parentA
==
parentB
)
return
false
;
// cant merge if part of same parent
parent
[
parentA
] =
parentB
;
// important
return
true
;
}
}
Back
|
FazBrowse Home
|
New Git URL