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 |
Tags
- 막내의막무가내 일상
- 프로그래머스 알고리즘
- 막내의 막무가내
- 부스트코스
- 막내의막무가내 안드로이드 에러 해결
- 막내의막무가내 플러터 flutter
- 2022년 6월 일상
- 막내의막무가내 프로그래밍
- 안드로이드 Sunflower 스터디
- 주엽역 생활맥주
- 막내의막무가내 코틀린 안드로이드
- 막내의막무가내 rxjava
- 주택가 잠실새내
- 막내의막무가내 안드로이드 코틀린
- 막무가내
- 막내의막무가내 목표 및 회고
- 막내의막무가내 SQL
- flutter network call
- 프래그먼트
- 부스트코스에이스
- 막내의막무가내 안드로이드
- 막내의막무가내 플러터
- 안드로이드 sunflower
- 막내의막무가내 알고리즘
- Fragment
- 막내의 막무가내 알고리즘
- 안드로이드
- 막내의막무가내
- 막내의막무가내 코틀린
- 막내의막무가내 코볼 COBOL
Archives
- Today
- Total
막내의 막무가내 프로그래밍 & 일상
[알고리즘] 백준 4386 별자리 만들기 -최소신장트리- 자바 본문
728x90
백준 최소신장트리 단계별 풀기 3번째 문제입니다.
이전 단계 문제와 마찬가지로 크루스칼 알고리즘과 유니온-파인드를 사용합니다.
입력값하고 가중치 넣는 방식만 변형된 문제였습니다.
[Java]
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
class Main {
private static int[] parent;
private static ArrayList<Star> tmpList = new ArrayList<>();
private static ArrayList<Star> starList = new ArrayList<>();
private static float answer = 0;
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for (int i = 0; i < n; i++) {
double x = sc.nextDouble();
double y = sc.nextDouble();
tmpList.add(new Star(x, y, 0f));
}
parent = new int[n];
for (int i = 0; i < n; i++) {
parent[i] = i;
}
for (int i = 0; i < tmpList.size() - 1; i++) {
Star star1 = tmpList.get(i);
double x1 = star1.x;
double y1 = star1.y;
for (int j = i + 1; j < tmpList.size(); j++) {
Star star2 = tmpList.get(j);
double x2 = star2.x;
double y2 = star2.y;
double weight = Math.sqrt(Math.pow(x1 - x2, 2) + Math.pow(y1 - y2, 2));
starList.add(new Star(i, j, weight));
}
}
Collections.sort(starList);
for (int i = 0; i < starList.size(); i++) {
Star star = starList.get(i);
if (!isSameParent((int) star.x, (int) star.y)) {
answer += star.weight;
union((int) star.x, (int) star.y); //연결
}
}
System.out.println(Math.round(answer*100)/100.0);
}
private static void union(int x, int y) {
x = find(x);
y = find(y);
if (x != y) {
if (x < y) parent[y] = x;
else parent[x] = y;
}
}
private static int find(int x) {
if (parent[x] == x) return x;
else return parent[x] = find(parent[x]);
}
private static boolean isSameParent(int x, int y) {
x = find(x);
y = find(y);
return x == y;
}
static class Star implements Comparable<Star> {
double x; //처음엔 x좌표로 사용하고 이후 시작 지점으로 사용
double y;
double weight;
public Star(double x, double y, double weight) {
this.x = x;
this.y = y;
this.weight = weight;
}
@Override
public int compareTo(Star o) {
return Double.compare(weight, o.weight);
}
}
}
댓글과 공감은 큰 힘이 됩니다. 감사합니다. !!
728x90
'알고리즘 > 유니온파인드, 최소신장트리(크루스칼)' 카테고리의 다른 글
[알고리즘] 백준 4195 친구 네트워크 -유니온 파인드- 자바 (0) | 2020.12.21 |
---|---|
[알고리즘] 백준 1774 우주신과의 교감 -최소신장트리- 자바 (0) | 2020.12.11 |
[알고리즘] 백준 1197 최소 스패닝 트리 -최소신장트리- 자바 (0) | 2020.12.11 |
[알고리즘] 백준 1976 여행 가자 -유니온파인드(Union-Find) 자바 (0) | 2020.11.07 |
[알고리즘] 백준 1717 집합의 표현 -유니온파인드(Union-find)- 자바 (0) | 2020.11.07 |
Comments