-
[Programmers] 달리기경주 (JAVA)Algorithm 2023. 8. 30. 22:49728x90
문제 설명
얀에서는 매년 달리기 경주가 열립니다. 해설진들은 선수들이 자기 바로 앞의 선수를 추월할 때 추월한 선수의 이름을 부릅니다. 예를 들어 1등부터 3등까지 "mumu", "soe", "poe" 선수들이 순서대로 달리고 있을 때, 해설진이 "soe"선수를 불렀다면 2등인 "soe" 선수가 1등인 "mumu" 선수를 추월했다는 것입니다. 즉 "soe" 선수가 1등, "mumu" 선수가 2등으로 바뀝니다.
선수들의 이름이 1등부터 현재 등수 순서대로 담긴 문자열 배열 players와 해설진이 부른 이름을 담은 문자열 배열 callings가 매개변수로 주어질 때, 경주가 끝났을 때 선수들의 이름을 1등부터 등수 순서대로 배열에 담아 return 하는 solution 함수를 완성해주세요.
제한사항
5 ≤ players의 길이 ≤ 50,000
players[i]는 i번째 선수의 이름을 의미합니다.
players의 원소들은 알파벳 소문자로만 이루어져 있습니다.
players에는 중복된 값이 들어가 있지 않습니다.
3 ≤ players[i]의 길이 ≤ 10
2 ≤ callings의 길이 ≤ 1,000,000
callings는 players의 원소들로만 이루어져 있습니다.
경주 진행중 1등인 선수의 이름은 불리지 않습니다.Solution
import java.util.HashMap; import java.util.Map; public class 달리기경주 { public String[] solution(String[] players, String[] callings) { Map<String, Integer> playerMap = new HashMap<String, Integer>(); Map<Integer, String> rankMap = new HashMap<Integer, String>(); int index = 0; for (String player : players) { playerMap.put(player, index); rankMap.put(index, player); index++; } for (String calling : callings) { int rank = playerMap.get(calling); String frontOfCalledPlayer = rankMap.get(rank - 1); playerMap.put(calling, rank - 1); playerMap.put(frontOfCalledPlayer, rank); rankMap.put(rank - 1, calling); rankMap.put(rank, frontOfCalledPlayer); } return rankMap.values().toArray(new String[0]); } }
728x90'Algorithm' 카테고리의 다른 글
[Programmers] 요격 시스템 (JAVA) (0) 2023.08.31 [Programmers] 추억 점수 (JAVA) (0) 2023.08.30 [LeetCode] 11. Container With Most Water (JAVA) (0) 2023.08.26 [Leetcode] 8. String To Integer(atoi) Typescript (0) 2023.01.24 [Leetcode] 7. Reverse Integer Typescript (0) 2022.08.25