結果

問題 No.1861 Required Number
ユーザー ChipppppChippppp
提出日時 2022-03-05 14:37:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 713 ms / 2,500 ms
コード長 763 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 63,480 KB
最終ジャッジ日時 2024-07-19 19:21:12
合計ジャッジ時間 31,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
44,352 KB
testcase_01 AC 534 ms
44,484 KB
testcase_02 AC 521 ms
43,716 KB
testcase_03 AC 687 ms
63,480 KB
testcase_04 AC 703 ms
63,088 KB
testcase_05 AC 537 ms
43,848 KB
testcase_06 AC 544 ms
44,484 KB
testcase_07 AC 527 ms
43,972 KB
testcase_08 AC 529 ms
43,852 KB
testcase_09 AC 525 ms
44,228 KB
testcase_10 AC 533 ms
43,984 KB
testcase_11 AC 538 ms
44,228 KB
testcase_12 AC 526 ms
44,232 KB
testcase_13 AC 533 ms
44,108 KB
testcase_14 AC 524 ms
43,976 KB
testcase_15 AC 528 ms
43,852 KB
testcase_16 AC 527 ms
43,980 KB
testcase_17 AC 533 ms
44,240 KB
testcase_18 AC 534 ms
44,104 KB
testcase_19 AC 535 ms
44,236 KB
testcase_20 AC 538 ms
44,104 KB
testcase_21 AC 540 ms
44,356 KB
testcase_22 AC 536 ms
43,968 KB
testcase_23 AC 544 ms
44,232 KB
testcase_24 AC 605 ms
50,504 KB
testcase_25 AC 685 ms
61,000 KB
testcase_26 AC 602 ms
45,004 KB
testcase_27 AC 661 ms
49,348 KB
testcase_28 AC 630 ms
50,500 KB
testcase_29 AC 649 ms
47,436 KB
testcase_30 AC 652 ms
43,844 KB
testcase_31 AC 675 ms
60,748 KB
testcase_32 AC 713 ms
44,352 KB
testcase_33 AC 672 ms
55,484 KB
testcase_34 AC 652 ms
57,420 KB
testcase_35 AC 671 ms
57,868 KB
testcase_36 AC 649 ms
47,556 KB
testcase_37 AC 652 ms
50,116 KB
testcase_38 AC 664 ms
58,176 KB
testcase_39 AC 661 ms
51,276 KB
testcase_40 AC 692 ms
60,808 KB
testcase_41 AC 671 ms
59,940 KB
testcase_42 AC 685 ms
56,516 KB
testcase_43 AC 671 ms
50,176 KB
testcase_44 AC 542 ms
43,840 KB
04_evil_1.txt RE -
04_evil_2.txt RE -
04_evil_3.txt RE -
04_evil_4.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    readline = sys.stdin.readline
    import numpy as np

    N, K = map(int, readline().split())
    A = np.fromstring(readline(), dtype = np.int64, sep = ' ')

    dpl = np.zeros((N + 1, K + 1), dtype = bool)
    dpr = np.zeros((N + 1, K + 1), dtype = bool)
    dpl[0][0] = dpr[N][0] = True

    for i in range(N):
        dpl[i + 1] = dpl[i]
        dpl[i + 1][A[i]:] |= dpl[i][:K - A[i] + 1]
    for i in reversed(range(N)):
        dpr[i] = dpr[i + 1]
        dpr[i][A[i]:] |= dpr[i + 1][:K - A[i] + 1]
    if not dpl[N][K]:
        print(-1)
    else:
        ans = 0
        for i in range(N):
            if not np.any(dpl[i] & dpr[i + 1][::-1]):
                ans += 1
        print(ans)
if __name__ == '__main__':
    main()
0