반응형
문제 보기
파이썬(Python) 풀이
N, M = map(int, input().split())
trees_height = list(map(int, input().split()))
min_height = 0; max_height = max(trees_height)
while max_height > min_height + 1:
cutting_height = (max_height + min_height)//2
sum = 0
for trees in trees_height:
if cutting_height < trees:
sum += (trees - cutting_height)
if sum >= M:
min_height = cutting_height
else:
max_height = cutting_height
if max_height == min_height + 1:
cutting_height = min_height
sum = 0
for trees in trees_height:
if cutting_height < trees:
sum += (trees - cutting_height)
print(cutting_height)
Python3로 제출하면 시간 초과가 났고, PyPy3로 제출하니 통과했습니다.
반응형
'DEVLOG > Algorithms' 카테고리의 다른 글
[파이썬(Python)] 회전행렬 / 2차원배열 회전하는 법 구현하기 (0) | 2019.09.19 |
---|---|
[알고리즘/코딩테스트] 2019 NAVER 신입 공채 준비하기 (0) | 2019.09.18 |
[이분 탐색] 알고리즘 설명 및 예제 풀이 (0) | 2019.09.10 |
[BOJ 1157] 단어 공부 - 파이썬 풀이 (0) | 2019.09.10 |
[BOJ 10809] 알파벳 찾기 - 파이썬 풀이 (0) | 2019.09.10 |
댓글