結果

問題 No.1861 Required Number
ユーザー H3PO4H3PO4
提出日時 2022-03-04 21:45:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 592 ms / 2,500 ms
コード長 542 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 72,816 KB
最終ジャッジ日時 2024-07-18 22:41:52
合計ジャッジ時間 30,033 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 511 ms
44,020 KB
testcase_01 AC 506 ms
44,280 KB
testcase_02 AC 512 ms
44,148 KB
testcase_03 AC 592 ms
72,816 KB
testcase_04 AC 585 ms
72,744 KB
testcase_05 AC 503 ms
44,144 KB
testcase_06 AC 505 ms
43,772 KB
testcase_07 AC 522 ms
43,896 KB
testcase_08 AC 511 ms
44,020 KB
testcase_09 AC 506 ms
44,268 KB
testcase_10 AC 505 ms
44,400 KB
testcase_11 AC 537 ms
44,152 KB
testcase_12 AC 510 ms
43,888 KB
testcase_13 AC 510 ms
43,992 KB
testcase_14 AC 510 ms
44,272 KB
testcase_15 AC 510 ms
43,760 KB
testcase_16 AC 511 ms
43,764 KB
testcase_17 AC 510 ms
44,024 KB
testcase_18 AC 510 ms
44,140 KB
testcase_19 AC 509 ms
44,268 KB
testcase_20 AC 513 ms
43,892 KB
testcase_21 AC 511 ms
44,016 KB
testcase_22 AC 513 ms
44,144 KB
testcase_23 AC 508 ms
43,768 KB
testcase_24 AC 543 ms
53,248 KB
testcase_25 AC 577 ms
68,712 KB
testcase_26 AC 542 ms
48,076 KB
testcase_27 AC 572 ms
52,212 KB
testcase_28 AC 564 ms
54,148 KB
testcase_29 AC 571 ms
49,140 KB
testcase_30 AC 563 ms
43,760 KB
testcase_31 AC 585 ms
69,160 KB
testcase_32 AC 555 ms
44,016 KB
testcase_33 AC 576 ms
60,804 KB
testcase_34 AC 574 ms
64,684 KB
testcase_35 AC 586 ms
64,484 KB
testcase_36 AC 574 ms
49,520 KB
testcase_37 AC 584 ms
53,484 KB
testcase_38 AC 578 ms
64,868 KB
testcase_39 AC 576 ms
55,084 KB
testcase_40 AC 587 ms
69,480 KB
testcase_41 AC 591 ms
67,904 KB
testcase_42 AC 587 ms
62,828 KB
testcase_43 AC 572 ms
53,540 KB
testcase_44 AC 514 ms
44,024 KB
04_evil_1.txt RE -
04_evil_2.txt RE -
04_evil_3.txt RE -
04_evil_4.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, K = map(int, input().split())
A = tuple(map(int, input().split()))

dp1 = np.zeros((N + 1, K + 1), dtype=bool)
dp2 = np.zeros((N + 1, K + 1), dtype=bool)

dp1[:, 0] = True
dp2[:, 0] = True

for i in range(N):
    a = A[i]
    dp1[i + 1] = dp1[i]
    dp1[i + 1, a:] |= dp1[i, :K + 1 - a]
for i in range(N - 1, -1, -1):
    a = A[i]
    dp2[i] = dp2[i + 1]
    dp2[i, a:] |= dp2[i + 1, :K + 1 - a]

if not dp1[-1, K]:
    print(-1)
    exit()

ans = np.count_nonzero(~np.any(dp1[:-1] & dp2[1:, ::-1], axis=1))
print(ans)
0