- Notifications
You must be signed in to change notification settings - Fork 846
/
Copy path8.py
28 lines (25 loc) · 864 Bytes
/
8.py
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
# 떡의 개수(N)와 요청한 떡의 길이(M)을 입력
n, m=list(map(int, input().split(' ')))
# 각 떡의 개별 높이 정보를 입력
array=list(map(int, input().split()))
# 이진 탐색을 위한 시작점과 끝점 설정
start=0
end=max(array)
# 이진 탐색 수행 (반복적)
result=0
while(start<=end):
total=0
mid= (start+end) //2
forxinarray:
# 잘랐을 때의 떡볶이 양 계산
ifx>mid:
total+=x-mid
# 떡볶이 양이 부족한 경우 더 많이 자르기 (오른쪽 부분 탐색)
iftotal<m:
end=mid-1
# 떡볶이 양이 충분한 경우 덜 자르기 (왼쪽 부분 탐색)
else:
result=mid# 최대한 덜 잘랐을 때가 정답이므로, 여기에서 result에 기록
start=mid+1
# 정답 출력
print(result)