Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 스프링
- 프로젝트
- 그래프
- 자료구조
- 알고리즘
- 백트래킹
- programmers
- DP
- 프로그래머스
- Brute-force
- BFS
- 자바
- 백준
- OS
- 네트워크
- algorithm
- 운영체제
- java
- TDD
- 모던자바
- LEVEL2
- baekjoon
- 코틀린
- DFS
- Java8
- kotlin
- backtracking
- back-end
- Spring
- lambda
Archives
- Today
- Total
요깨비's LAB
[백준, 그래프 이론, Java] P.1922 네트워크 연결 (크루스칼) 본문
MST를 이용해서 풀었으며, 기존의 배열을 활용한 풀이보다는 각각의 정점과 간선을 인스턴스화하여
푸는 방식으로 진행하였습니다.
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
class Vertax {
Vertax parent;
int id;
boolean isVisted;
public Vertax(int id, boolean isVisted) {
this.parent = this;
this.id = id;
this.isVisted = isVisted;
}
public Vertax findParent(Vertax p) {
// System.out.println(this.id + ", " + p.id);
if(p.id == p.parent.id) {
// System.out.println(p.parent.id + ", " + p.id);
return p;
}
return p = findParent(p.parent);
}
public int merge(Vertax v,int total ,int cost) {
Vertax u = findParent(parent);
v = findParent(v.parent);
if(u.id == v.id) {
return total;
}
v.parent = parent;
return total + cost;
}
}
class Edge {
Vertax from;
Vertax to;
boolean isVisted;
int value;
public Edge(Vertax from, Vertax to, boolean isVisted, int value) {
this.from = from;
this.to = to;
this.isVisted = isVisted;
this.value = value;
}
}
public class Main {
public static List<Vertax> vertaxes = new ArrayList<>();
public static List<Edge> edges = new ArrayList<>();
public static void main(String[] args) {
Scanner scr = new Scanner(System.in);
int N = scr.nextInt();
int M = scr.nextInt();
for (int i = 0; i <= N; i++) {
Vertax vertax = new Vertax(i, false);
vertaxes.add(vertax);
}
for (int i = 0; i < M; i++) {
int from = scr.nextInt() - 1;
int to = scr.nextInt() - 1;
int value = scr.nextInt();
Edge edge = new Edge(
vertaxes.get(from),
vertaxes.get(to),
false,
value);
edges.add(edge);
}
edges.sort((Edge edge1, Edge edge2) -> edge1.value - edge2.value);
int total = 0;
for(int i=0;i<M;i++) {
Edge edge = edges.get(i);
// System.out.println("from= " + edge.from.id + " to= " + edge.to.id + " value= " + edge.value);
total = edge.from.merge(edge.to, total, edge.value);
}
System.out.println(total);
}
}
'알고리즘(Java) > 그래프 이론' 카테고리의 다른 글
[백준, 그래프 이론, Java] P.1647 도시 분할 계획 (크루스칼) (0) | 2021.04.20 |
---|---|
[백준, 그래프 이론, Java] P.2188 축사 배정(이분 매칭) (0) | 2021.04.20 |
[백준, 그래프 이론, Java] P.1197 최소 스패닝 트리 (프림) (0) | 2021.04.16 |
[백준, 그래프 이론, Java] P.1197 최소 스패닝 트리 (크루스칼) (0) | 2021.04.16 |
[백준, 그래프 이론, Java] P.1922 네트워크 연결 (프림) (0) | 2021.04.16 |
Comments