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 |
Tags
- 영상제작기
- 삼성SDS Brigthics
- 포스코 아카데미
- 삼성 SDS Brigthics
- Brigthics를 이용한 분석
- 팀 분석
- 삼성 SDS
- Brigthics
- 직원 이직률
- 혼공머신러닝딥러닝
- 직원 이직여부
- 브라이틱스
- 추천시스템
- 혼공
- Brightics Studio
- 캐글
- Brigthics Studio
- Brightics를 이용한 분석
- 브라이틱스 서포터즈
- 모델링
- 혼공학습단
- Brightics
- 삼성SDS
- 포스코 청년
- 개인 의료비 예측
- 데이터분석
- 노코드AI
- 혼공머신
- 삼성SDS Brightics
- 데이터 분석
Archives
- Today
- Total
데이터사이언스 기록기📚
[프로그래머스/Python] Level 2_[3차]방금그곡 (2018 KAKAO BLIND RECRUITMENT) 본문
Coding Test/프로그래머스(Python)
[프로그래머스/Python] Level 2_[3차]방금그곡 (2018 KAKAO BLIND RECRUITMENT)
syunze 2023. 8. 14. 17:00📌문제 유형
2018 KAKAO BLIND RECRUITMENT(구현)
📌문제
📌나의 문제풀이
- 맞는 노래가 없는 경우 return "(None)"으로 정확히 작성해주어야 함!
- 테케 30번은 재생된 시간만큼만 재생되어야 통과됨!
각 음은 1분에 1개씩 재생된다. 음악은 반드시 처음부터 재생되며 음악 길이보다 재생된 시간이 길 때는 음악이 끊김 없이 처음부터 반복해서 재생된다. 음악 길이보다 재생된 시간이 짧을 때는 처음부터 재생 시간만큼만 재생된다.
def solution(m, musicinfos):
result = [] # (순서, 재생시간, 음악제목)
for i in range(len(musicinfos)): # [i][0] : 시작시간, [i][1] : 끝 시간, [i][2] : 제목, [i][3] : 음
new_list = musicinfos[i].split(',')
start_h, start_m = map(int, new_list[0].split(':'))
end_h, end_m = map(int,new_list[1].split(':'))
play_time = (end_h - start_h) * 60 + (end_m - start_m)
# 음계 리스트에 넣기
m_ = []
for j in range(len(m)-1):
if m[j+1] == '#':
m_.append(m[j] + m[j+1])
elif m[j] == '#':
continue
else:
m_.append(m[j])
if m[-1] != '#':
m_.append(m[-1])
# new_list[3]도 동일한 형태
n_ = []
for j in range(len(new_list[3])-1):
if new_list[3][j+1] == '#':
n_.append(new_list[3][j] + new_list[3][j+1])
elif new_list[3][j] == '#':
continue
else:
n_.append(new_list[3][j])
if new_list[3][-1] != '#':
n_.append(new_list[3][-1])
#확인할 음계 만들기
a = play_time // len(n_)
b = play_time % len(n_)
if play_time >= len(n_):
new_words = n_ * a + n_[:b]
else:
new_words = n_[:b]
# 하나씩 돌아가면서 하나씩 확인
for k in range(len(new_words)-len(m_)+1):
if new_words[k:k+len(m_)] == m_:
result.append((i, play_time, new_list[2]))
break
if len(result) > 1:
result.sort(key = lambda x : (-x[1],x[0]))
return result[0][2]
elif len(result) == 0:
return "(None)"
else:
return result[0][2]
📌다른 사람의 문제풀이
- #처리를 소문자로 바꿔서 확인하기
def shap_to_lower(s):
s = s.replace('C#','c').replace('D#','d').replace('F#','f').replace('G#','g').replace('A#','a')
return s
def solution(m,musicinfos):
answer=[0,'(None)'] # time_len, title
m = shap_to_lower(m)
for info in musicinfos:
split_info = info.split(',')
time_length = (int(split_info[1][:2])-int(split_info[0][:2]))*60+int(split_info[1][-2:])-int(split_info[0][-2:])
title = split_info[2]
part_notes = shap_to_lower(split_info[-1])
full_notes = part_notes*(time_length//len(part_notes))+part_notes[:time_length%len(part_notes)]
if m in full_notes and time_length>answer[0]:
answer=[time_length,title]
return answer[-1]
📌리뷰
- 구현은 조건 하나하나 정확하게 파악하기..!
- 처리하기 어려운 문자는, 단순한 문자로 대체하는 것도 방법!
728x90
'Coding Test > 프로그래머스(Python)' 카테고리의 다른 글
[프로그래머스/Python] Level 2_배달 (Summer/Winter Coding(~2018)) (0) | 2023.09.25 |
---|---|
[프로그래머스/Python] Level 2_수식 최대화 (2020 카카오 인턴십) (0) | 2023.09.06 |
[프로그래머스/Python] Level 2_메뉴 리뉴얼(2021 KAKAO BLIND RECRUITMENT) (0) | 2023.06.09 |
[프로그래머스/Python] Level 2_두 큐 합 같게 만들기(2022 KAKAO TECH INTERNSHIP) (0) | 2023.06.08 |
[프로그래머스/Python] Level 2_방문길이(Summer/Winter Coding(~2018)) (0) | 2023.05.17 |
Comments