마구간 정하기
생성일: 2022년 1월 17일 오후 6:00
구현 코드
# 마구간 정하기(결정 알고리즘)
import sys
sys.stdin = open("input.txt", "rt")
def Count(distance):
cnt = 1
position = l[0]
for i in range(1,n):
if l[i]-position >= distance:
cnt += 1
position = l[i]
return cnt
n, c = map(int, input().split())
largest = 0
l = []
for _ in range(n):
tmp = int(input())
l.append(tmp)
largest = max(largest, tmp)
lt = 1
rt = largest
res = 0
while lt <= rt:
mid = (lt+rt)//2
if Count(mid) >= c:
lt = mid + 1
res = mid
else:
rt = mid - 1
print(res)
- Count 함수는 특정 distance(거리)를 두면서 말들을 배치할 때 마구간에 최대 몇마리의 말들이 들어갈 수 있는지를 구하는 함수이다.
Author And Source
이 문제에 관하여(마구간 정하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@lsj8706/마구간-정하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)