257일차 - BOJ no.2110
5166 단어 Algorithm DiaryAlgorithm Diary
https://www.acmicpc.net/problem/2110
My Solution
n, c = list(map(int, input().split(' ')))
arr = []
for _ in range(n):
arr.append(int(input()))
arr.sort()
def install_router(lst, C):
lst.sort()
lo = 1
hi = lst[-1] - lst[0]
min_gap = 0
while lo <= hi:
mid = (lo + hi) // 2
cnt = 1
cur = lst[0]
for i in range(1, len(lst)):
if lst[i] >= cur + mid:
cur = lst[i]
cnt += 1
if cnt >= C:
min_gap = mid
lo = mid + 1
else:
hi = mid - 1
return min_gap
print(install_router(arr, c))
Author And Source
이 문제에 관하여(257일차 - BOJ no.2110), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@vivala0519/257일차-BOJ-no저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)