목차

공유기 설치

ps
링크acmicpc.net/…
출처BOJ
문제 번호2110
문제명공유기 배치
레벨실버 1
분류

파라메트릭 서치

시간복잡도O(n(logx + logn))
인풋사이즈n<=200,000, x<=10^9
사용한 언어Python
제출기록37392KB / 324ms
최고기록140ms
해결날짜2021/06/04
태그

21단계

풀이

코드

"""Solution code for "BOJ 2110. 공유기 설치".

- Problem link: https://www.acmicpc.net/problem/2110
- Solution link: http://www.teferi.net/ps/problems/boj/2110
"""

import sys
from teflib import algorithm


def main():
    def is_impossible(dist):
        count = 1
        prev_pos = x[0]
        for pos in x:
            if pos - prev_pos < dist:
                continue
            prev_pos = pos
            count += 1
            if count >= C:
                return False
        return True

    N, C = [int(x) for x in sys.stdin.readline().split()]
    x = [int(sys.stdin.readline()) for _ in range(N)]

    x.sort()
    upper_bound = (x[-1] - x[0]) // (C - 1) + 2
    print(algorithm.binary_search(1, upper_bound, is_impossible) - 1)


if __name__ == '__main__':
    main()