結果

問題 No.1861 Required Number
ユーザー H20H20
提出日時 2022-03-04 23:04:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,003 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 155,704 KB
最終ジャッジ日時 2024-07-18 23:14:50
合計ジャッジ時間 18,915 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,912 KB
testcase_01 AC 45 ms
151,400 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 48 ms
71,524 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 58 ms
68,680 KB
testcase_09 AC 41 ms
60,200 KB
testcase_10 AC 51 ms
66,828 KB
testcase_11 AC 48 ms
64,644 KB
testcase_12 AC 41 ms
60,876 KB
testcase_13 AC 53 ms
66,560 KB
testcase_14 AC 47 ms
64,948 KB
testcase_15 AC 49 ms
64,276 KB
testcase_16 AC 42 ms
60,240 KB
testcase_17 AC 49 ms
64,584 KB
testcase_18 AC 49 ms
64,732 KB
testcase_19 AC 48 ms
65,880 KB
testcase_20 AC 51 ms
68,592 KB
testcase_21 AC 46 ms
64,796 KB
testcase_22 AC 51 ms
67,696 KB
testcase_23 AC 46 ms
63,976 KB
testcase_24 AC 81 ms
76,632 KB
testcase_25 AC 148 ms
76,760 KB
testcase_26 AC 78 ms
76,436 KB
testcase_27 AC 76 ms
76,184 KB
testcase_28 AC 100 ms
76,672 KB
testcase_29 AC 84 ms
76,584 KB
testcase_30 AC 47 ms
63,416 KB
testcase_31 AC 121 ms
76,240 KB
testcase_32 AC 44 ms
64,456 KB
testcase_33 AC 96 ms
76,760 KB
testcase_34 AC 133 ms
76,620 KB
testcase_35 AC 139 ms
76,684 KB
testcase_36 AC 90 ms
76,980 KB
testcase_37 AC 101 ms
76,668 KB
testcase_38 AC 144 ms
76,556 KB
testcase_39 AC 112 ms
76,832 KB
testcase_40 AC 121 ms
76,716 KB
testcase_41 AC 143 ms
76,716 KB
testcase_42 AC 129 ms
76,528 KB
testcase_43 AC 79 ms
76,236 KB
testcase_44 AC 38 ms
54,608 KB
04_evil_1.txt TLE -
04_evil_2.txt TLE -
04_evil_3.txt TLE -
04_evil_4.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

N,K = map(int,input().split())
A = list(map(int, input().split()))
A.sort(reverse=True)
CA = collections.Counter(A)
if sum(A)==K:
    print(N)
    exit()
if CA[1]>K:
    print(0)
    exit()

DP = [-1]*(K+1)
for i in range(N):
    for j in reversed(range(K)):
        if DP[j]!=-1 and j+A[i]<=K and DP[j+A[i]]==-1:
            DP[j+A[i]]=i
        else:
            pass
    if DP[K]!=-1:
        break
    if DP[A[i]]==-1:
        DP[A[i]]=i
if DP[K]==-1:
    print(-1)
    exit()
v = K
B = []
while v>0:
    B.append(A[DP[v]])
    v-=A[DP[v]]
ans = 0
CB = collections.Counter(B)
for k,v in CB.items():
    DP = [-1]*(K+1)
    for i in range(N):
        if A[i]==k:
            continue
        for j in reversed(range(K)):
            if DP[j]!=-1 and j+A[i]<=K and DP[j+A[i]]==-1:
                DP[j+A[i]]=i
            else:
                pass
        if DP[K]!=-1:
            break
        if DP[A[i]]==-1:
            DP[A[i]]=i
    if DP[K]==-1:
        ans+=v

print(ans)
0