-
Notifications
You must be signed in to change notification settings - Fork 0
/
기타 레슨.cc
54 lines (43 loc) · 1.14 KB
/
기타 레슨.cc
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* N개의 강의를 M개의 CD에 나눠야 됨. 이때, 각 CD의 시간은 같고, 시간의 최솟값 구하기
* -> cd의 길이를 기준으로 해보자.
*
* 풀케이스 -> 당연히 시간초과 -> 이분탐색
* left = 1, right = 1000000000
*
* -> cd의 개수룰 cnt로 세고, M < cnt mid가 커짐
*
*/
#include <iostream>
#include <algorithm>
using namespace std;
int N, M;
int lecture[1000001];
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int left = 0, right = 0;
int mid, len, cnt;
cin >> N >> M;
for (int i = 0; i < N; i++) {
cin >> lecture[i];
right += lecture[i];
}
left = *max_element(lecture, lecture + N);
while (left <= right) {
mid = (left + right) / 2;
len = 0; cnt = 0;
for (int i = 0; i < N; i++) {
if (len + lecture[i] > mid) {
len = 0;
cnt++;
}
len += lecture[i];
}
if (len != 0) cnt++;
if (cnt > M) left = mid + 1;
else right = mid - 1;
}
cout << left;
return 0;
}