[白俊]4386号星座/Java,Pythonを作成
Baekjoon Online Judge
algorithm practice
-問題を逐次解く
30.最小身長木
グラフィック内のすべての頂点を最小限のコストで接続しましょう.
Java/Python
3.星座の作成
4386番
座標平面にMSTを作成する問題
今回の問題は、星が2次元平面に置かれ、1本の線を接続するたびに、2つの星の間の距離の費用が必要になる場合、星座を作る最小費用を計算することです.
最小身長ツリータイプの問題.クルーズアルゴリズムを用いて解くことができる.すべての星の間の距離を計算して、幹線をリストします.そして、一般的な最小伸長樹タイプのように、昇順に幹線を並べます.2つのノードは、幹線に接続されている2つのノードの親ノードと異なる場合にのみ接続されます.
union関数を使用してparentを独自に初期化し、関数findと集約演算を使用して親を検索し、親が同じ親を持つようにします.
Edge class:幹線情報を格納し、接続された星s、e、およびコストを格納します.
Comp耕地を実現し、compareToをカバー
import java.io.*;
import java.util.*;
public class Main {
static class Star {
int number;
double x, y;
Star(int number, double x, double y) {
this.number = number;
this.x = x;
this.y = y;
}
}
static class Edge implements Comparable<Edge> {
int s, e;
double cost;
Edge(int s, int e, double cost) {
this.s = s;
this.e = e;
this.cost = cost;
}
@Override
public int compareTo(Edge o) {
// Comparable을 통해 정렬 우선순위 (cost 기준)
return o.cost >= this.cost ? -1 : 1;
}
}
static int[] parent;
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st;
int N = Integer.parseInt(br.readLine());
Star[] star = new Star[N];
parent = new int[N + 1];
for (int i = 0; i < N; i++) {
parent[i] = i;
}
for (int i = 0; i < N; i++) {
st = new StringTokenizer(br.readLine());
double a = Double.parseDouble(st.nextToken());
double b = Double.parseDouble(st.nextToken());
star[i] = new Star(i, a, b);
}
PriorityQueue<Edge> pque = new PriorityQueue<>();
for (int i = 0; i < N - 1; i++)
for (int j = i + 1; j < N; j++)
pque.offer(new Edge(i, j,
Math.sqrt(Math.pow(star[i].x - star[j].x, 2) + Math.pow(star[i].y - star[j].y, 2))));
double cost = 0;
while (!pque.isEmpty()) {
Edge now = pque.poll();
if (find(now.s) != find(now.e)) {
union(now.s, now.e);
cost += now.cost;
}
}
bw.write(Math.round(cost * 100) / 100.0 + "\n");
bw.flush();
bw.close();
br.close();
}
// x의 부모 찾기
public static int find(int x) {
if (x == parent[x])
return x;
return parent[x] = find(parent[x]);
}
// y 부모를 x 부모로 치환하기 (x > y 일 경우 반대)
public 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;
}
}
}
}
import sys
import math
sys.setrecursionlimit(10**6)
input = sys.stdin.readline
# 크루스칼 알고리즘
def find(x):
if x == parent[x]:
return x
parent[x] = find(parent[x]) # 부모 테이블 갱신
return parent[x]
def union(x, y):
x = find(x)
y = find(y)
if x == y: # 동일한 집합일 경우
return
if x < y:
parent[y] = x
else:
parent[x] = y
N = int(input())
parent = [i for i in range(N+1)]
stars = []
edges = []
result = 0
for _ in range(N):
x, y = map(float, input().split())
stars.append((x, y))
# 모든 별들 간에 간선, 비용 계산 저장
for i in range(N - 1):
for j in range(i+1, N):
edges.append((math.sqrt((stars[i][0] - stars[j][0])**2 + (stars[i][1] - stars[j][1])**2), i, j))
edges.sort()
for e in edges:
cost, x, y = e
if find(x) != find(y):
union(x, y)
result += cost
print(round(result, 2))
Reference
この問題について([白俊]4386号星座/Java,Pythonを作成), 我々は、より多くの情報をここで見つけました https://velog.io/@jini_eun/백준-4386번-별자리-만들기-Java-Pythonテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol