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
- 프로그래머스
- 티스토리챌린지
- Lv. 2
- level 3
- select
- programmers
- 너비 우선 탐색
- Lv. 3
- dfs
- Java
- 동적계획법
- bfs
- 소프티어
- SQL
- javascript
- Python
- 파이썬
- 자바스크립트
- softeer
- 오블완
- DP
- join
- Dynamic Programming
- LEVEL 2
- Lv. 0
- group by
- C언어
- 깊이 우선 탐색
- Lv. 1
- SQL 고득점 KIT
Archives
- Today
- Total
몸과 마음이 건전한 SW 개발자
프로그래머스 [Lv. 2] [3차] 방금그곡 {언어 : JavaScript} 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/17683
정답 코드
function solution(m, musicinfos) {
let answer = '(None)';
let maxTimes = 0;
const musicDevide = (music) => {
const stack = [];
const lenMusic = music.length;
let jdx = 0;
while (jdx < lenMusic) {
const cv = music[jdx];
if (jdx+1 <= lenMusic && music[jdx+1] == "#") {
jdx += 1;
stack.push(cv+"#");
} else {
stack.push(cv);
};
jdx += 1;
};
return stack;
};
const calTimes = (st, et) => {
const stTmp = st.split(":");
const etTmp = et.split(":");
const stTimes = parseInt(stTmp[0]) * 60 + parseInt(stTmp[1]);
const etTimes = parseInt(etTmp[0]) * 60 + parseInt(etTmp[1]);
return etTimes - stTimes;
};
const newM = musicDevide(m);
const lenM = newM.length;
for (const music of musicinfos) {
const [st, et, title, rhythm] = music.split(",");
const times = calTimes(st, et);
const newRhythm = musicDevide(rhythm);
const lenR = newRhythm.length;
let isValid = 0;
let [idx, checkIdx] = [0, 0];
while (idx < times) {
if (newRhythm[idx%lenR] == newM[checkIdx%lenM]) {
checkIdx += 1;
if (checkIdx && checkIdx % lenM == 0) {
isValid += 1;
};
} else {
checkIdx = 0;
if (newRhythm[idx%lenR] == newM[0]) {
checkIdx += 1;
};
};
idx += 1;
};
if (isValid && times > maxTimes) {
answer = title;
maxTimes = times;
};
};
return answer;
}
풀이 방법
- 리듬에 #이 있기 때문에 stack에 하나하나 확인해서 분류해준다.
- 끝나는 시각에서 시작하는 시각을 빼서 시간을 구한다.
- 시간 만큼 jdx를 증가시키면서 m과 일치하는지 확인한다.
- 일치하는 경우 시간이 긴 쪽을 answer에 저장한다.
느낀점
- #이 있다는 점을 망각하고 풀어서 틀렸었다.
- 다시 찾기는 했지만 문제를 꼼꼼하게 읽는 것이 항상 중요하다.