728x90
https://www.acmicpc.net/problem/2805
솔직히 이분탐색을 구현해본적이 많지 않아서... 상당히 고전한 문제
이분탐색으로 반씩 줄여가며 풀어야 제한시간 내에 풀 수 있다.
내가 쓴 코드는 pypy3으로 제출해야 시간초과 안남
python3으로 내면 시간초과남
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
|
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
woods = list(map(int, input().split()))
left = 0
right = max(woods)
result = []
while left <= right:
sum_length = 0
mid = (left + right) // 2
for i in woods:
if i > mid:
sum_length += i - mid
if sum_length == m:
result.append(mid)
break
elif sum_length > m:
result.append(mid)
left = mid + 1
else:
right = mid - 1
print(max(result))
|
cs |
728x90
'PS > 백준' 카테고리의 다른 글
[백준 1010번 ] 다리 놓기 (파이썬/python) (0) | 2021.06.15 |
---|---|
[백준 4949번 ] 균형잡힌 세상 (파이썬/python) (0) | 2021.06.15 |
[백준 11651번] 좌표 정렬하기 2 (파이썬/python) (0) | 2021.06.14 |
[백준 11729번] 하노이 탑 이동 순서 (파이썬/python) (0) | 2021.06.14 |
[백준 1929번] 소수 구하기 (파이썬/python) (0) | 2021.06.14 |