알고리즘83 :: 프로그래머스_네트워크
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
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
class Solution {
static int[] visit;
static void DFS(int nn, int[][] computers) {
visit[nn] = 1;
for(int i=0; i<computers[nn].length; i++) {
if(i==nn) continue;
if(visit[i] ==0 && computers[nn][i] == 1) {
DFS(i,computers);
}
}
}
public int solution(int n, int[][] computers) {
int ans = 0;
visit = new int[computers.length]; //vertex is visit?
for(int i=0; i<computers.length; i++) {
if(visit[i] == 1) continue;
DFS(i,computers);
ans +=1;
}
return ans;
}
}
|
cs |
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
|
package programmers;
public class 네트워크_유니온파인드 {
static int n;
static int[][] computers;
static int[] parents;
static void merge(int u, int v) {
u = find(u);
v = find(v);
parents[v] = u;
}
static int find(int nn) {
if(parents[nn] == nn)
return nn;
else
return parents[nn] = find(parents[nn]);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
computers = new int[][]{
{1,1,0},
{1,1,0},
{0,0,1}
};
parents = new int[computers.length];
for(int i=0; i<computers.length; i++)
parents[i] = i;
int ans = 0;
for(int i=0; i<computers.length; i++) {
for(int j=0; j<computers[i].length; j++) {
if(i==j) continue;
if(computers[i][j] == 1 && find(i) != find(j)) {
ans +=1;
merge(i,j);
}
}
}
System.out.println(n-ans);
}
}
|
cs |
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
|
package programmers;
public class 네트워크_유니온파인드_2 {
static int[][] computers;
static int[] parents;
static int find(int nn) {
if(parents[nn]<0) return nn;
else
return parents[nn] = find(parents[nn]);
}
static void union(int u, int v) {
u = find(u);
v = find(v);
if(u!=v)
parents[u] = v;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
computers = new int[][]{
{1,1,0},
{1,1,0},
{0,0,1}
};
parents = new int[computers.length];
for(int i=0; i<parents.length; i++)
parents[i] = -1;
for(int i=0; i<computers.length; i++) {
for(int j=0; j<computers[i].length; j++) {
if(i==j) continue;
if(computers[i][j] == 0) continue;
union(i,j);
}
}
int ans = 0;
for(int i=0; i<parents.length; i++) {
if(parents[i]<0) ans+=1;
}
System.out.println(ans);
}
}
|
cs |
DFS, Union-find, Union-find(-1로 초기화) 이렇게 풀어봤다.
'알고리즘' 카테고리의 다른 글
알고리즘85 :: 프로그래머스_수들의합 (0) | 2020.04.25 |
---|---|
알고리즘84 :: 프로그래머스_단어변환 (0) | 2020.04.24 |
알고리즘82 :: 프로그래머스_섬연결하기(MST, 크루스칼) (0) | 2020.04.23 |
알고리즘81 :: BOJ_18809_Gaaaaaaaaaarden(작성중) (0) | 2020.04.21 |
알고리즘80 :: 프로그래머스_베스트앨범 (0) | 2020.04.21 |
댓글
이 글 공유하기
다른 글
-
알고리즘85 :: 프로그래머스_수들의합
알고리즘85 :: 프로그래머스_수들의합
2020.04.25 -
알고리즘84 :: 프로그래머스_단어변환
알고리즘84 :: 프로그래머스_단어변환
2020.04.24 -
알고리즘82 :: 프로그래머스_섬연결하기(MST, 크루스칼)
알고리즘82 :: 프로그래머스_섬연결하기(MST, 크루스칼)
2020.04.23 -
알고리즘81 :: BOJ_18809_Gaaaaaaaaaarden(작성중)
알고리즘81 :: BOJ_18809_Gaaaaaaaaaarden(작성중)
2020.04.21