厩舎を決める
4845 ワード
作成日:2022年1月17日午後6:00
Count関数は、特定の距離(距離)の場合、厩舎に最大何頭の馬が収容できるかを求める関数です.
インプリメンテーションコード
# 마구간 정하기(결정 알고리즘)
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)
Reference
この問題について(厩舎を決める), 我々は、より多くの情報をここで見つけました https://velog.io/@lsj8706/마구간-정하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol