Baekjoon 2110 (공유기 설치)

Baekjoon 2110 (공유기 설치)

Baekjoon 2110, 백준 2110 문제의 본인 풀이입니다!
문제는 아래의 링크에서 확인할 수 있습니다.
문제보기

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
55
#include <cstdio>
#include <algorithm>
using namespace std;

int N, C;
int main() {
// get inputs
scanf("%d %d", &N, &C);
long long int* arr = new long long int[N];
for(int i = 0; i < N; i++){
scanf("%lld",&arr[i]);
}

// sort input array
sort(arr, arr+N);

// Binary Search
long long int left, right, middle, answer = 0;
int temp, next, count;
left = 1, right = arr[N-1] - arr[0];

while(left <= right) {
middle = (left + right) / 2;
temp = 0, next = 1, count = 1;

// check if this case is possible
while(next < N){
if(arr[next] - arr[temp] < middle) {
// shouldn't place
next++;
}

else if(arr[next] - arr[temp] >= middle) {
// place
temp = next;
next++;
count++;
}
}

if(count >= C) {
// okay, but should check more
answer = middle;
left = middle + 1;
}

else if(count < C){
// need to place more
right = middle - 1;
}
}

printf("%lld\n", answer);
delete[] arr;
}

이분탐색을 응용한 Parametric Search 의 응용 문제.
어떠한 방식으로 이분 탐색을 진행할 것인지가 핵심이었다.

Author

Yeonsang Shin

Posted on

2020-08-18

Updated on

2022-12-19

Licensed under

Comments