https://www.acmicpc.net/problem/2343
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
|
import sys
input = sys.stdin.readline
n, m = map(int, input().split())
a = list(map(int, input().split()))
start = max(a)
end = sum(a)
while start<=end:
mid = (start+end)//2
sum = 0
count = 0
for i in range(n):
if sum + a[i] > mid:
count+=1
sum = 0
sum+=a[i]
if sum != 0:
count +=1
if count > m:
start = mid+1
else:
end = mid-1
print(start)
|
cs |
'백준' 카테고리의 다른 글
백준 1018번: 체스판 다시 칠하기 (0) | 2023.02.18 |
---|---|
백준 1300번: K번째 수 (1) | 2023.02.16 |
백준 1167번: 트리의 지름 (0) | 2023.02.12 |
백준 2023번: 신기한 소수 (0) | 2023.02.10 |
백준 1517번: 버블 소트 (0) | 2023.02.09 |