結果

問題 No.1861 Required Number
ユーザー shiomusubi496shiomusubi496
提出日時 2022-03-04 16:29:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 656 ms / 2,500 ms
コード長 763 bytes
コンパイル時間 832 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 63,056 KB
最終ジャッジ日時 2024-07-18 22:26:35
合計ジャッジ時間 31,659 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
44,096 KB
testcase_01 AC 510 ms
43,980 KB
testcase_02 AC 510 ms
44,356 KB
testcase_03 AC 656 ms
62,956 KB
testcase_04 AC 655 ms
63,056 KB
testcase_05 AC 508 ms
43,844 KB
testcase_06 AC 506 ms
44,096 KB
testcase_07 AC 501 ms
44,108 KB
testcase_08 AC 507 ms
44,484 KB
testcase_09 AC 501 ms
43,840 KB
testcase_10 AC 507 ms
44,360 KB
testcase_11 AC 508 ms
43,852 KB
testcase_12 AC 506 ms
44,104 KB
testcase_13 AC 501 ms
44,232 KB
testcase_14 AC 505 ms
44,100 KB
testcase_15 AC 508 ms
44,236 KB
testcase_16 AC 507 ms
43,852 KB
testcase_17 AC 507 ms
44,232 KB
testcase_18 AC 512 ms
44,100 KB
testcase_19 AC 507 ms
43,976 KB
testcase_20 AC 506 ms
44,096 KB
testcase_21 AC 508 ms
44,224 KB
testcase_22 AC 505 ms
44,104 KB
testcase_23 AC 510 ms
43,852 KB
testcase_24 AC 574 ms
49,976 KB
testcase_25 AC 643 ms
60,492 KB
testcase_26 AC 576 ms
45,248 KB
testcase_27 AC 620 ms
49,496 KB
testcase_28 AC 602 ms
50,648 KB
testcase_29 AC 619 ms
47,560 KB
testcase_30 AC 616 ms
43,976 KB
testcase_31 AC 632 ms
60,612 KB
testcase_32 AC 616 ms
44,224 KB
testcase_33 AC 634 ms
55,068 KB
testcase_34 AC 638 ms
57,480 KB
testcase_35 AC 650 ms
57,544 KB
testcase_36 AC 625 ms
47,424 KB
testcase_37 AC 630 ms
49,992 KB
testcase_38 AC 633 ms
57,712 KB
testcase_39 AC 622 ms
51,100 KB
testcase_40 AC 647 ms
60,968 KB
testcase_41 AC 639 ms
59,552 KB
testcase_42 AC 648 ms
56,536 KB
testcase_43 AC 629 ms
50,648 KB
testcase_44 AC 506 ms
43,972 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