-
[프로그래머스] 합승 택시 요금 (2021 KAKAO BLIND RECRUITMENT)ALGORITHM/PROGRAMMERS 2021. 1. 31. 21:48
programmers.co.kr/learn/courses/30/lessons/72413
2021-01-31
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657public class Solution72413 {public static int arr[][], dist[][];public static int solution(int n, int s, int a, int b, int[][] fares) {int answer = 987654321;arr = new int[n+1][n+1];dist = new int[n+1][n+1];for(int i = 0; i < fares.length; i++) {arr[fares[i][0]][fares[i][1]] = fares[i][2];arr[fares[i][1]][fares[i][0]] = fares[i][2];}//초기화for(int i = 1; i <= n; i++) {for(int j = 1; j <= n; j++) {dist[i][j] = (arr[i][j] == 0 && (i!=j)) ? 987654321 : arr[i][j];}}for(int k = 1; k <= n; k++) { // 거쳐가는 노드for(int i = 1; i <= n; i++) { // 출발 노드for(int j = 1; j <= n; j++) { // 도착 노드if(dist[i][j] > dist[i][k] + dist[k][j])dist[i][j] = dist[i][k] + dist[k][j];}}}for(int i = 1; i <= n; i++) {if(dist[s][i] != 987654321) {answer = Math.min(answer, (dist[s][i] + dist[i][a] + dist[i][b]));}}return answer;}public static void main(String[] args) {int n = 6;int s = 4;int a = 6;int b = 2;int fares[][] = {{4, 1, 10},{3, 5, 24},{5, 6, 2},{3, 1, 41},{5, 1, 24},{4, 6, 50},{2, 4, 66},{2, 3, 22},{1, 6, 25}};System.out.println(solution(n, s, a, b, fares));}}cs #문제풀이
처음에는 다익스트라 알고리즘으로 풀어보려고 했었다. 생각한 로직이 잘못 됐는지 채점이 반토막이 나서,
그냥 플로이드 와샬로 풀었다.
1. arr 배열에 각 지점별 택시요금을 저장하고, 그것을 이용하여 dist 배열을 초기화 했다.
2. 그리고 dist배열을 플로이드와샬 알고리즘으로 계산 하였다.
3. 마지막에 모든 노드를 기준으로 dist[출발점][노드] + dist[노드][a] + dist[노드][b]를 계산하여 가장 작은 값을 답으로 출력하였다.
'ALGORITHM > PROGRAMMERS' 카테고리의 다른 글
[프로그래머스] 파일명 정렬 (2018 KAKAO BLIND RECRUITMENT) (0) 2021.02.09 [프로그래머스] 메뉴 리뉴얼 (2021 KAKAO BLIND RECRUITMENT) (0) 2021.02.04 [프로그래머스] 신규 아이디 추천 (2021 KAKAO BLIND RECRUITMENT) (0) 2021.01.26 [프로그래머스] 베스트앨범 (0) 2021.01.23 [프로그래머스] 괄호 변환 (2020 KAKAO BLIND RECRUITMENT) (0) 2021.01.23