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
- domain model
- 그래프
- 해시맵
- microflow
- Bruteforce
- 이분탐색
- lcap
- git
- Mendix
- MySQL
- 자료구조
- 백트래킹
- 집합
- 프로그래머스
- algorithm
- 자바
- Sort
- 스택
- SQL
- 알고리즘
- Recursion
- 재귀
- 매개변수 탐색
- 반효경교수님
- 완전탐색
- 멘딕스
- 가중치없는그래프
- 트리
- 정렬
- dfs
Archives
- Today
- Total
mondegreen
[240401] 알고리즘 리부트 43일차 - 프로그래머스 배달 자바 본문
반응형
가중치가 있는 그래프 문제이다. 다익스트라 알고리즘을 활용해야 하므로 우선순위 큐로 구현해야 한다. 이 때 delivery라는 클래스는 정렬 기준을 선언해줘야 한다. 주의할 점은 무방향 그래프이기 때문에 인접리스트에 양방향으로 값을 넣어줘야 한다. 오랜만이다 다익스트라..!ㅎ
import java.util.*;
class Solution {
public static class delivery{
int dest;
int time;
public delivery(int x, int y){
this.dest = x;
this.time = y;
}
}
public int solution(int N, int[][] road, int K) {
int answer = 0;
int [] dist = new int[N+1];
Arrays.fill(dist, Integer.MAX_VALUE);
dist[1] = 0;
ArrayList<delivery>[] adjList = new ArrayList[N+1];
for(int i =0; i<=N; i++){
adjList[i] = new ArrayList<delivery>();
}
for(int[] data : road){ //무방향이라 양쪽으로 넣어주기
adjList[data[0]].add(new delivery (data[1], data[2]));
adjList[data[1]].add(new delivery (data[0], data[2]));
}
// 가중치가 있는 그래프 => 우선순위 큐로 다익스트라 구현
PriorityQueue<delivery> pq = new PriorityQueue<>((o1,o2)->Integer.compare(o1.time, o2.time));
pq.offer(new delivery(1, 0));
while(!pq.isEmpty()){
delivery curr = pq.poll();
if(curr.time > dist[curr.dest]) continue;
for(int i = 0; i< adjList[curr.dest].size(); i++){
delivery candidate = adjList[curr.dest].get(i);
if(dist[candidate.dest] > candidate.time + curr.time){
dist[candidate.dest] = candidate.time + curr.time;
pq.offer(new delivery(candidate.dest, dist[candidate.dest]));
}
}
}
for(int i =1; i<=N; i++){
if(dist[i]<=K) answer++;
}
return answer;
}
}
반응형
'알고리즘 풀이 및 리뷰 > 프로그래머스' 카테고리의 다른 글
[240403] 알고리즘 리부트 44일차 - 프로그래머스 타겟 넘버 자바 (0) | 2024.04.03 |
---|---|
[240402] 알고리즘 리부트 44일차 - 프로그래머스 전력망 둘로 나누기 자바 (0) | 2024.04.03 |
[240330] 알고리즘 리부트 42일차 - 프로그래머스 게임 맵 최단거리 자바 (0) | 2024.03.30 |
[240329] 알고리즘 리부트 41일차 - 프로그래머스 섬 연결하기 자바 (0) | 2024.03.29 |
[240329] 알고리즘 리부트 41일차 - 프로그래머스 영어 끝말잇기 자바 (0) | 2024.03.29 |