結果

問題 No.1861 Required Number
ユーザー H20H20
提出日時 2022-03-04 23:22:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,147 bytes
コンパイル時間 829 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 157,216 KB
最終ジャッジ日時 2024-07-18 23:19:07
合計ジャッジ時間 10,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
62,144 KB
testcase_01 AC 46 ms
157,216 KB
testcase_02 AC 42 ms
61,528 KB
testcase_03 WA -
testcase_04 AC 48 ms
63,372 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 49 ms
62,572 KB
testcase_08 WA -
testcase_09 AC 46 ms
60,408 KB
testcase_10 AC 56 ms
66,164 KB
testcase_11 AC 53 ms
64,712 KB
testcase_12 AC 48 ms
61,228 KB
testcase_13 AC 56 ms
65,592 KB
testcase_14 AC 54 ms
65,244 KB
testcase_15 AC 42 ms
55,040 KB
testcase_16 AC 45 ms
61,252 KB
testcase_17 AC 54 ms
64,776 KB
testcase_18 AC 54 ms
65,040 KB
testcase_19 AC 54 ms
65,852 KB
testcase_20 AC 58 ms
67,508 KB
testcase_21 AC 42 ms
54,372 KB
testcase_22 AC 57 ms
66,500 KB
testcase_23 AC 43 ms
54,836 KB
testcase_24 AC 49 ms
63,800 KB
testcase_25 AC 50 ms
63,552 KB
testcase_26 AC 49 ms
62,580 KB
testcase_27 AC 49 ms
64,712 KB
testcase_28 AC 49 ms
63,412 KB
testcase_29 AC 49 ms
64,704 KB
testcase_30 AC 48 ms
62,888 KB
testcase_31 AC 50 ms
64,184 KB
testcase_32 AC 49 ms
64,384 KB
testcase_33 AC 49 ms
64,716 KB
testcase_34 AC 50 ms
64,716 KB
testcase_35 AC 50 ms
63,528 KB
testcase_36 AC 50 ms
63,200 KB
testcase_37 AC 51 ms
63,460 KB
testcase_38 AC 50 ms
64,000 KB
testcase_39 AC 50 ms
64,700 KB
testcase_40 AC 51 ms
63,396 KB
testcase_41 AC 50 ms
63,680 KB
testcase_42 AC 50 ms
63,668 KB
testcase_43 AC 49 ms
64,148 KB
testcase_44 AC 42 ms
54,988 KB
04_evil_1.txt WA -
04_evil_2.txt WA -
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()
if CA[0]>0:
    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
L = []
B = []
while v>0:
    L.append(DP[v])
    B.append(A[DP[v]])
    v-=A[DP[v]]
ans = 0
CB = collections.Counter(B)
for k,v in CB.items():
    if CB[k]==CA[k]:
        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