티스토리 뷰
문제출처 - https://programmers.co.kr/learn/courses/30/lessons/42747
틀린 풀이1
# 87.5점
def solution(citations):
answer = 0
while True:
cnt = 0 # h편 이상인 논문 수
for i in citations:
if i >= answer:
cnt += 1
if cnt == answer:
break;
answer += 1
return answer
단순하게 while문과 for문만 이용해서 풀었다.
테스트케이스 11, 16에서 시간초과
틀린 풀이2
# 81.3점
def solution(citations):
answer = 0
left, right = 0, len(citations) - 1
while True:
mid = (left + right) // 2
cnt = 0
for i in citations:
if i >= mid:
cnt += 1
if cnt == mid:
answer = mid
break
elif cnt > mid:
left = mid + 1
else:
right = mid - 1
return answer
틀린 풀이1에서 시간초과가 떠서 이번엔 이분탐색으로 풀었는데 이번엔 테스트케이스 9, 11, 16에서 시간초과...
성공한 풀이
def solution(citations):
answer = 0
left, right = 0, len(citations) - 1
while True:
mid = (left + right) // 2
cnt = 0
for i in citations:
if i > mid:
cnt += 1
if cnt == len(citations):
return cnt
if cnt == mid:
answer = mid
break
elif cnt > mid:
left = mid + 1
else:
right = mid - 1
return answer
틀린 풀이2에 중간에 if문 한개만 추가해줬더니 정답이란다.
다른 블로그 보고 [10, 50, 100]인 경우 h-index = 3이 되는 경우를 고려했다.
하지만 이 풀이도 완벽하지 않은게 테스트케이스1번에서 시간초과가 뜬다는 것 ([3, 0, 6, 1, 5]인 경우..) 아마 if i > mid에서 등호를 뺀게 문제가 되는 것 같다. 저기에 등호를 붙이면 다시 테스트케이스 11, 16이 실패뜸.
테스트케이스가 뭔지 몰라서 걍 포기했음ㅋㅋ
[2020.02.26 수정]
모두 성공한 풀이
def solution(citations):
answer = 0
left, right = 0, len(citations) - 1
citations.sort()
while True:
mid = (left + right) // 2
cnt = 0
for i in citations:
if i > mid:
cnt += 1
# 이걸 추가함
if left > right:
return cnt
if cnt == len(citations):
return cnt
if cnt == mid:
answer = mid
break
elif cnt > mid:
left = mid + 1
else:
right = mid - 1
print(left, right, mid, cnt)
return answer
print(solution([3, 0, 6, 1, 5]))
테스트케이스1도 통과되게 수정함!!!
테스트케이스1의 경우 left = 3, right = 2, mid = 2, cnt = 3으로 무한루프를 돌아서 시간초과난거!!
그래서 left > right인 경우 걍 리턴하게 수정함
'ALGORITHM > 프로그래머스' 카테고리의 다른 글
[Python][완전탐색] 프로그래머스 - 숫자야구(Level2) (0) | 2020.02.22 |
---|---|
[Python][완전탐색] 프로그래머스 - 소수찾기(Level2) (0) | 2020.02.22 |
[Python][정렬] 프로그래머스 - 가장 큰 수(Level2) (2) | 2020.02.21 |
[C++]프로그래머스 - [1차]다트게임(level1) (0) | 2020.02.19 |
[Python][해시] 프로그래머스 - 베스트 앨범(Level3) (0) | 2020.02.16 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 코딩테스트
- 정렬
- 문자열
- 힙
- BOJ
- Python
- 해시
- hash
- 백준
- Permutation
- 재귀
- SW Expert
- 순열
- 딕셔너리
- 완전탐색
- left join
- 스택
- programmers
- 파이썬
- 2019 Kakao Blind Recruitment
- dictionary
- 괄호
- 2020 KAKAO BLIND RECRUITMENT
- 문자열처리
- combination
- SWExpert
- 우선순위큐
- C++
- 구현
- 프로그래머스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함