일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자바스크립트
- 프로그래밍언어
- 주식
- 백준알고리즘
- 독서
- 알고리즘 공부
- 성분
- 서평
- 책을알려주는남자
- 독후감
- 프로그래머스 알고리즘 공부
- 자바
- 책알남
- algorithmtraining
- C++
- JavaScript
- C
- 투자
- 경제
- 다독
- algorithmStudy
- 화장품
- 지혜를가진흑곰
- Java
- 알고리즘트레이닝
- 알고리즘공부
- 재테크
- 돈
- 채권
- algorithmTest
Archives
- Today
- Total
탁월함은 어떻게 나오는가?
[Algorithm] 달리기 경주 (JavaScript - Programmers) 본문
[Snow-ball]프로그래밍(컴퓨터)/Algorithm
[Algorithm] 달리기 경주 (JavaScript - Programmers)
Snow-ball 2023. 4. 11. 13:21반응형
문제 설명
얀에서는 매년 달리기 경주가 열립니다. 해설진들은 선수들이 자기 바로 앞의 선수를 추월할 때 추월한 선수의 이름을 부릅니다. 예를 들어 1등부터 3등까지 "mumu", "soe", "poe" 선수들이 순서대로 달리고 있을 때, 해설진이 "soe"선수를 불렀다면 2등인 "soe" 선수가 1등인 "mumu" 선수를 추월했다는 것입니다. 즉 "soe"선수가 1등, "mumu" 선수가 2등으로 바뀝니다.
선수들의 이름이 1등부터 현재 등수 순서대로 담긴 문자열 배열 players 와 해설진이 부른 이름을 담은 문자열 배열 callings 가 매개변수로 주어질 때, 경주가 끝났을 때 선수들의 이름을 1등부터 등수 순서대로 배열에 담아 return 하는 solution 함수를 완성해주세요.
문제 풀이
1)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
function solution(players, callings) {
const map = new Map();
players.forEach((key, value) => map.set(key, value))
callings.forEach((el) => {
const index = map.get(el)
const moveIndex = index - 1;
const player = players[moveIndex];
players[moveIndex] = players[index];
players[index] = player;
map.set(el, moveIndex);
map.set(player, index);
})
return players;
}
|
cs |
2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
function solution(players, callings) {
const object = {};
players.forEach((key, value) => object[key] = value);
callings.forEach((el, inx) => {
const index = object[callings[inx]];
const player = players[index - 1];
players[index - 1] = players[index];
players[index] = player;
object[player]++
object[callings[inx]]--
})
return players;
}
|
cs |
반응형
'[Snow-ball]프로그래밍(컴퓨터) > Algorithm' 카테고리의 다른 글
[Algorithm] 혼자서 하는 틱택토 ( Programmers / Python ) (0) | 2024.06.11 |
---|---|
[Algorithm] 욕심쟁이 알고리즘 배낭무게 문제풀이 [C++] (0) | 2022.04.28 |
[algorithm 이론] for문 사용할때 i++, ++i는 어떤 차이가 있을까? (0) | 2022.03.16 |
[algorithm 이론] 자주 접할 수 있는 알고리즘시간 복잡도 정리 (0) | 2022.03.15 |
[알고리즘] 퀵 정렬(Quick Sort) 알고리즘 개념과 원리에 대해 쉽고 빠르게 공부해보자 [C언어] (0) | 2022.02.03 |
Comments