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
- str to char array
- 알고리즘 그래프
- 순열 재귀
- parseInt()
- 조합 재귀
- 상속
- jquery 속성선택자
- Java
- Interface
- 자바 조합 재귀
- 서로소
- 재귀함수
- jquery 필터선택자
- 재귀
- 후위표기
- 자바 순열 코드
- char to str
- jquery 이벤트 처리
- 자바 재귀 조합
- 알고리즘
- java Collections.sort()
- java lambda
- java 내부 클래스
- jquery dom 계층 선택자
- 자바입출력
- 자바
- 자바스크립트 이벤트처리
- 자바스크립트 이벤트중지
- inner class
- 순열코드
Archives
- Today
- Total
유블로그
[프로그래머스] 섬 연결하기 본문
프로그래머스 level 3 섬 연결하기
이상하게 코드를 짜다가 이게 MST구하는 크루스칼 문제라는 걸 나중에 꺠달았다..
그래프를 한 지 오래 되어서 기억이 나지 않아
옛날에 공부했던 크루스칼 코드를 다시 보고 짤 수 있었다.
코드는 기본 크루스칼 코드와 다른 점이 전혀 없다!!!
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
class Solution {
public static int solution(int n, int[][] costs) {
N = n;
List<int[]> adjList = new ArrayList<>();
for (int i = 0; i < costs.length; i++) {
adjList.add(new int[] {costs[i][0], costs[i][1], costs[i][2]});
}
makeSet();
Collections.sort(adjList, new Comparator<int[]>() { // 가중치 작은 순으로 정렬
@Override
public int compare(int[] o1, int[] o2) {
return o1[2]-o2[2];
}
});
int answer = 0, count = n;
for(int[] arr : adjList) {
if(union(arr[0], arr[1])) {
answer += arr[2];
count--;
}
if(count == 0) break;
}
return answer;
}
public static int find(int a) {
if(parents[a] == a) return a;
return parents[a] = find(parents[a]);
}
public static boolean union(int a, int b) {
int aRoot = find(a);
int bRoot = find(b);
if(aRoot == bRoot) return false;
parents[bRoot] = aRoot;
return true;
}
static int N;
static int[] parents;
public static void makeSet() {
parents = new int[N];
for (int i = 0; i < N; i++) {
parents[i] = i;
}
}
}
'알고리즘' 카테고리의 다른 글
[프로그래머스] 완주하지 못한 선수 (0) | 2020.12.15 |
---|---|
[프로그래머스] 단속카메라 (0) | 2020.12.15 |
[프로그래머스] 구명보트 (0) | 2020.12.14 |
[프로그래머스] 큰 수 만들기 (0) | 2020.12.14 |
[프로그래머스] 조이스틱 (0) | 2020.12.14 |