250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 막내의막무가내 목표 및 회고
- 막내의막무가내 코볼 COBOL
- 막무가내
- 프래그먼트
- 막내의막무가내 rxjava
- 막내의막무가내 일상
- 막내의막무가내 안드로이드 코틀린
- 막내의막무가내 코틀린 안드로이드
- Fragment
- 안드로이드
- 주엽역 생활맥주
- 막내의막무가내 코틀린
- 막내의막무가내 SQL
- 안드로이드 Sunflower 스터디
- 주택가 잠실새내
- 부스트코스에이스
- 2022년 6월 일상
- flutter network call
- 부스트코스
- 막내의막무가내 플러터 flutter
- 안드로이드 sunflower
- 막내의막무가내
- 막내의막무가내 알고리즘
- 막내의 막무가내 알고리즘
- 막내의막무가내 안드로이드 에러 해결
- 막내의막무가내 안드로이드
- 막내의막무가내 프로그래밍
- 막내의 막무가내
- 막내의막무가내 플러터
- 프로그래머스 알고리즘
Archives
- Today
- Total
막내의 막무가내 프로그래밍 & 일상
[알고리즘] 백준 16398 행성연결 -최소신장트리- 자바 본문
728x90
최소신장트리 복습 겸 백준 분류별 풀기에서 기본 유형을 하나 풀어봤습니다.
이전에 많이 풀었던 유형이라 설명은 생략하도록 하겠습니다.
[Java]
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
class Main {
private static int[] parent;
private static int N;
private static List<Edge> edgeList = new ArrayList<>();
private static long answer = 0;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
parent = new int[N];
for (int i = 0; i < N; i++) {
parent[i] = i;
}
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
int weight = sc.nextInt();
if (weight != 0) { // 연결 가능한 경우
edgeList.add(new Edge(i, j, weight));
}
}
}
Collections.sort(edgeList);
for (int i = 0; i < edgeList.size(); i++) {
Edge edge = edgeList.get(i);
if (!isSameParent(edge.start, edge.end)) {
answer += edge.weight;
union(edge.start, edge.end);
}
}
System.out.println(answer);
}
private static void union(int a, int b) {
a = find(a);
b = find(b);
if (a != b) {
if (a < b) parent[b] = a;
else parent[a] = b;
}
}
private static boolean isSameParent(int a, int b) {
return find(a) == find(b);
}
private static int find(int a) {
if (parent[a] == a) {
return a;
} else {
return parent[a] = find(parent[a]);
}
}
static class Edge implements Comparable<Edge> {
int start;
int end;
int weight;
public Edge(int start, int end, int weight) {
this.start = start;
this.end = end;
this.weight = weight;
}
@Override
public int compareTo(Edge o) {
return weight - o.weight;
}
}
}
댓글과 공감은 큰 힘이 됩니다. 감사합니다. !!
728x90
'알고리즘 > 유니온파인드, 최소신장트리(크루스칼)' 카테고리의 다른 글
[알고리즘] 백준 17352 여러분의 다리가 되어 드리겠습니다! - 유니온파인드 - 자바, 코틀린 (2) | 2021.07.02 |
---|---|
[알고리즘] 백준 10423 전기가 부족해 -최소신장트리, 크루스칼- 자바 코틀린 (0) | 2021.04.14 |
[알고리즘] 프로그래머스 섬 연결하기 -그리디, 최소신장트리- 자바 (2) | 2021.03.10 |
[알고리즘] 백준 10775 공항 -유니온파인드- 자바 코틀린 (0) | 2021.02.27 |
[알고리즘] 백준 2887 행성 터널 -최소신장트리- 자바 (0) | 2020.12.26 |
Comments