結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,796 KB
testcase_01 AC 37 ms
53,816 KB
testcase_02 AC 37 ms
53,204 KB
testcase_03 AC 35 ms
52,952 KB
testcase_04 AC 36 ms
53,264 KB
testcase_05 AC 37 ms
54,344 KB
testcase_06 AC 37 ms
52,948 KB
testcase_07 AC 45 ms
59,588 KB
testcase_08 AC 39 ms
53,840 KB
testcase_09 AC 47 ms
61,728 KB
testcase_10 AC 48 ms
62,076 KB
testcase_11 AC 47 ms
61,508 KB
testcase_12 AC 41 ms
58,976 KB
testcase_13 AC 179 ms
91,648 KB
testcase_14 AC 357 ms
97,584 KB
testcase_15 AC 213 ms
96,868 KB
testcase_16 AC 316 ms
107,880 KB
testcase_17 AC 77 ms
76,300 KB
testcase_18 AC 215 ms
94,104 KB
testcase_19 AC 100 ms
76,484 KB
testcase_20 AC 93 ms
77,308 KB
testcase_21 AC 90 ms
76,776 KB
testcase_22 AC 235 ms
92,520 KB
testcase_23 AC 276 ms
94,472 KB
testcase_24 AC 170 ms
85,368 KB
testcase_25 AC 73 ms
76,192 KB
testcase_26 AC 258 ms
98,896 KB
testcase_27 AC 193 ms
84,956 KB
testcase_28 AC 331 ms
99,792 KB
testcase_29 AC 217 ms
93,944 KB
testcase_30 AC 302 ms
100,336 KB
testcase_31 AC 146 ms
83,968 KB
testcase_32 AC 339 ms
104,084 KB
testcase_33 AC 377 ms
108,016 KB
testcase_34 AC 401 ms
108,000 KB
testcase_35 AC 367 ms
108,000 KB
testcase_36 AC 382 ms
107,468 KB
testcase_37 AC 393 ms
107,672 KB
testcase_38 AC 372 ms
107,648 KB
testcase_39 AC 362 ms
108,396 KB
testcase_40 AC 108 ms
108,032 KB
testcase_41 AC 35 ms
53,216 KB
testcase_42 AC 37 ms
53,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
from itertools import accumulate


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