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
- 안드로이드 Sunflower 스터디
- 막내의막무가내 플러터
- 주택가 잠실새내
- 막내의 막무가내
- 막내의막무가내 프로그래밍
- 막내의막무가내 안드로이드
- 막내의막무가내 코틀린 안드로이드
- 부스트코스에이스
- flutter network call
- 막내의막무가내 플러터 flutter
- 프로그래머스 알고리즘
- Fragment
- 막내의막무가내 코볼 COBOL
- 막내의막무가내 목표 및 회고
- 막내의막무가내 안드로이드 에러 해결
- 막내의막무가내 SQL
- 2022년 6월 일상
- 막내의막무가내 알고리즘
- 막내의 막무가내 알고리즘
- 안드로이드
- 주엽역 생활맥주
- 막내의막무가내 안드로이드 코틀린
- 막무가내
- 안드로이드 sunflower
- 프래그먼트
- 막내의막무가내 코틀린
- 막내의막무가내
- 막내의막무가내 rxjava
- 부스트코스
- 막내의막무가내 일상
Archives
- Today
- Total
막내의 막무가내 프로그래밍 & 일상
[알고리즘] 백준 1774 우주신과의 교감 -최소신장트리- 자바 본문
728x90
백준 최소신장트리 단계별풀기의 4번째 문제입니다. ㅎㅎ
이전 단계문제들과 거의 비슷합니다.
N개의 나의 위치와 우주신들의 좌표가 주어집니다.
그다음 M개의 이어진 좌표들이 주어 집니다.
이 이후에 최소비용으로 모두 연결해서 가장 낮은 비용으로 나와 우주신들이 모두 건너건너 최소신장트리로 연결되게 하면 끝입니다.
기존의 크루스칼 알고리즘을 사용하면 풀립니다.
추가로 Math.round() 를 사용하면 4.00일 경우 0이 잘려서 4.0으로 출력이 되서 이럴때는 String.foramt()을 사용해야한 다는 것을 배웠습니다. ㅎㅎ
풀이는 다음과 같습니다.
[Java]
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
class Main {
private static int[] parent;
private static Space[] spaces;
private static ArrayList<Space> spaceList = new ArrayList<>();
private static double answer = 0;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt(); //우주선의 개수
int M = sc.nextInt(); //신들과의 통로의 개수
parent = new int[N];
spaces = new Space[N];
for (int i = 0; i < N; i++) {
parent[i] = i;
}
//황선자를 포함하여 우주신들의 좌표
for (int i = 0; i < N; i++) {
int x = sc.nextInt();
int y = sc.nextInt();
spaces[i] = new Space(x, y, 0);
}
//이미 연결된 통로
for (int i = 0; i < M; i++) {
int space1 = sc.nextInt();
int space2 = sc.nextInt();
union(space1-1, space2-1);
}
//edge 초기화
for (int i = 0; i < spaces.length - 1; i++) {
Space space1 = spaces[i];
for (int j = i + 1; j < spaces.length; j++) {
Space space2 = spaces[j];
double weight = Math.sqrt(Math.pow(space1.x - space2.x, 2) + Math.pow(space1.y - space2.y, 2));
spaceList.add(new Space(i, j, weight));
}
}
//최소비용 오름차순 정렬
Collections.sort(spaceList);
//최소비용 탐색
for (int i = 0; i < spaceList.size(); i++) {
Space space = spaceList.get(i);
if (!isSameParent(space.x, space.y)) {
answer += space.weight;
union(space.x, space.y);
}
}
System.out.println(String.format("%.2f", answer));
}
private static void union(int x, int y) {
x = find(x);
y = find(y);
if (x < y) parent[y] = x;
else parent[x] = y;
}
private static boolean isSameParent(int x, int y) {
return find(x) == find(y);
}
private static int find(int x) {
if (parent[x] == x) return x;
else return parent[x] = find(parent[x]);
}
private static class Space implements Comparable<Space> {
int x; //x좌표이자 노드
int y;
double weight;
public Space(int x, int y, double weight) {
this.x = x;
this.y = y;
this.weight = weight;
}
@Override
public int compareTo(Space o) {
if (weight > o.weight) return 1;
else return -1;
}
}
}
댓글과 공감은 큰 힘이 됩니다. 감사합니다. !!
728x90
'알고리즘 > 유니온파인드, 최소신장트리(크루스칼)' 카테고리의 다른 글
[알고리즘] 백준 2887 행성 터널 -최소신장트리- 자바 (0) | 2020.12.26 |
---|---|
[알고리즘] 백준 4195 친구 네트워크 -유니온 파인드- 자바 (0) | 2020.12.21 |
[알고리즘] 백준 4386 별자리 만들기 -최소신장트리- 자바 (0) | 2020.12.11 |
[알고리즘] 백준 1197 최소 스패닝 트리 -최소신장트리- 자바 (0) | 2020.12.11 |
[알고리즘] 백준 1976 여행 가자 -유니온파인드(Union-Find) 자바 (0) | 2020.11.07 |
Comments