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
- 세마포어와 뮤텍스의 차이
- Proxy Server
- 삼성 청년 SW 아카데미
- 서버 호스팅
- 세마포어와 뮤텍스
- 세마포어란?
- 다익스트라
- 뮤텍스란?
- 싸피 면접 후기
- Dijkstra Algorithm
- 플로이드 워셜
- 플로이드 와샬
- 호스팅이란?
- 싸피
- 웹 호스팅
- Proxy
- 최단 경로
- Synchronization
- floyd-warshall
- 프록시서버
- 클라우드 서버
- SSAFY
- 뮤텍스
- 동기화
- 프록시
- 다익스트라 알고리즘
- 세마포어
- 싸피 합격
- 호스팅
Archives
- Today
- Total
어제의 나보다 성장한 오늘의 나
[프로그래머스][Level3][Java] 섬연결하기 본문
programmers.co.kr/learn/courses/30/lessons/42861
문제풀이
크루스칼 알고리즘을 알고 있다면 풀 수 있는 문제였다.
코드
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
class Solution {
int[] parents;
public int solution(int n, int[][] costs) {
make(n);
List<Pos> list = new ArrayList<>();
for(int i = 0; i<costs.length; i++) {
list.add(new Pos(costs[i][0], costs[i][1],costs[i][2]));
}
Collections.sort(list);
int index = 0;
int answer = 0;
for(int i =0; i<list.size(); i++){
Pos pos = list.get(i);
if(union(pos.first, pos.second)) {
index++;
answer += pos.cost;
}
if (index == n-1) break;
}
return answer;
}
private int find(int a) {
if (parents[a] == a)
return a;
return parents[a] = find(parents[a]);
}
private boolean union(int a, int b) {
int aRoot = find(a);
int bRoot = find(b);
if (aRoot == bRoot)
return false;
parents[bRoot] = aRoot;
return true;
}
private void make(int n) {
parents = new int[n];
for (int i = 0; i < n; i++) {
parents[i] = i;
}
}
static class Pos implements Comparable<Pos>{
int first;
int second;
int cost;
public Pos(int first, int second, int cost) {
super();
this.first = first;
this.second = second;
this.cost = cost;
}
@Override
public int compareTo(Pos o) {
return this.cost - o.cost;
}
}
}
'알고리즘 > 프로그래머스(Programmers)' 카테고리의 다른 글
[프로그래머스][Level2][Java] 올바른 괄호 (0) | 2020.12.26 |
---|---|
[프로그래머스][Level2][Java] 가장 큰 정사격형 찾기 (0) | 2020.12.26 |
[프로그래머스][Level2][Java] 타겟 넘버 (0) | 2020.12.26 |
[프로그래머스][Level2][Java] 카펫 (0) | 2020.12.25 |
[프로그래머스][Level2][Java] 압축 (0) | 2020.12.25 |
Comments