結果

問題 No.1211 円環はお断り
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-03-11 17:15:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 998 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 108,044 KB
最終ジャッジ日時 2024-09-18 06:36:08
合計ジャッジ時間 9,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,812 KB
testcase_01 AC 35 ms
53,292 KB
testcase_02 AC 37 ms
52,408 KB
testcase_03 AC 36 ms
52,072 KB
testcase_04 AC 37 ms
53,480 KB
testcase_05 AC 36 ms
52,808 KB
testcase_06 AC 36 ms
52,732 KB
testcase_07 AC 41 ms
59,168 KB
testcase_08 AC 35 ms
53,084 KB
testcase_09 AC 42 ms
62,652 KB
testcase_10 AC 45 ms
62,200 KB
testcase_11 AC 43 ms
61,952 KB
testcase_12 AC 40 ms
59,660 KB
testcase_13 AC 184 ms
92,288 KB
testcase_14 AC 367 ms
97,084 KB
testcase_15 AC 202 ms
97,420 KB
testcase_16 AC 307 ms
107,352 KB
testcase_17 AC 77 ms
76,176 KB
testcase_18 AC 208 ms
94,580 KB
testcase_19 AC 93 ms
76,812 KB
testcase_20 AC 95 ms
76,716 KB
testcase_21 AC 88 ms
77,508 KB
testcase_22 AC 237 ms
92,444 KB
testcase_23 AC 281 ms
94,268 KB
testcase_24 AC 159 ms
85,848 KB
testcase_25 AC 67 ms
76,040 KB
testcase_26 AC 234 ms
99,268 KB
testcase_27 AC 169 ms
85,060 KB
testcase_28 AC 333 ms
100,392 KB
testcase_29 AC 215 ms
94,404 KB
testcase_30 AC 285 ms
100,048 KB
testcase_31 AC 149 ms
83,700 KB
testcase_32 AC 363 ms
104,196 KB
testcase_33 AC 411 ms
107,484 KB
testcase_34 AC 405 ms
107,592 KB
testcase_35 AC 417 ms
108,028 KB
testcase_36 AC 390 ms
107,928 KB
testcase_37 AC 369 ms
107,520 KB
testcase_38 AC 415 ms
107,500 KB
testcase_39 AC 388 ms
107,852 KB
testcase_40 AC 105 ms
108,044 KB
testcase_41 AC 35 ms
54,140 KB
testcase_42 AC 35 ms
52,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
from itertools import accumulate
import sys


input = lambda: sys.stdin.readline().rstrip("\r\n")
INF = int(4e18)

if __name__ == "__main__":
    n, k = map(int, input().split())
    nums = list(map(int, input().split()))

    def check(mid: int) -> bool:
        """每段>=mid,是否能分成>=k段"""
        max_ = bisect_right(preSum, mid)  # 第一段
        for start in range(max_):
            if start > n:
                break
            cur = start
            for _ in range(k):
                cur = bisect_left(preSum, preSum[cur] + mid, lo=cur)
                if cur > start + n:
                    break
            else:
                return True
        return False

    preSum = [0] + list(accumulate(nums + nums))
    left, right = 1, (sum(nums) // k) + 1
    while left <= right:
        mid = (left + right) // 2
        if check(mid):
            left = mid + 1
        else:
            right = mid - 1
    print(right)
0