일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- KAKAO BLIND RECRUITMENT
- 이분탐색
- 추석맞이 코딩챌린지
- 동적 계획법
- 위클리 챌린지
- divmod
- java
- dfs
- BFS
- Zip
- heapq
- backjoon
- 다익스트라
- 정규식
- 백준
- 카카오
- Re
- 수학
- 재귀함수
- 프로그래머스
- Combinations
- lambda
- python
- DateTime
- programmers
- 파이썬
- 정렬
- Set
- 자바
- 그리디
Archives
- Today
- Total
상상쓰
[프로그래머스] [3차] 방금그곡 본문
https://programmers.co.kr/learn/courses/30/lessons/17683
'#' 이 붙은 음은 여기서 한 문자로 취급되어야 하므로 한 문자로 대체한다. ('C#' -> 'c')
divmod 를 사용하여 구한 몫과 나머지로 곡의 정보를 반복 또는 slicing 하여 재생된 전체 멜로디를 구한 뒤 그 정보를 담은 dictionary 를 재생 길이로 내림차순, 먼저 나온 음악 순서로 정렬한다.
그럼, 정렬된 dictionary 를 반복하여 네오가 기억한 멜로디가 들어있는 음악이라면 반복문을 종료하고 해당 음악의 제목을 반환하면 된다.
def solution(m, musicinfos):
answer = '(None)'
dic = {}
m = m.replace('C#', 'c').replace('D#', 'd').replace('F#', 'f').replace('G#', 'g').replace('A#', 'a')
index = 0
for i in musicinfos:
index += 1
s, e, sj, info = i.split(',')
info = info.replace('C#', 'c').replace('D#', 'd').replace('F#', 'f').replace('G#', 'g').replace('A#', 'a')
sm, ss = s.split(':')
em, es = e.split(':')
l = (int(em) - int(sm)) * 60 + int(es) - int(ss)
d, r = divmod(l, len(info))
dic[sj] = [info * d + info[:r], index]
music = sorted(dic.items(), key = lambda x : (-len(x[1][0]), x[1][1]))
for sj, info in music:
if m in info[0]:
answer = sj
break
return answer
print(solution('ABCDEFG', ['12:00,12:14,HELLO,CDEFGAB', '13:00,13:05,WORLD,ABCDEF'])) # HELLO
'Coding Test' 카테고리의 다른 글
[프로그래머스] [3차] 파일명 정렬 (0) | 2021.09.03 |
---|---|
[프로그래머스] [3차] 압축 (0) | 2021.09.03 |
[프로그래머스] [1차] 다트 게임 (0) | 2021.08.31 |
[프로그래머스] [1차] 비밀지도 (0) | 2021.08.30 |
[프로그래머스] 5주차_모음사전 (0) | 2021.08.30 |
Comments