結果

問題 No.1861 Required Number
ユーザー H20H20
提出日時 2022-03-04 23:29:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,500 ms
コード長 1,242 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 151,212 KB
最終ジャッジ日時 2024-07-18 23:23:18
合計ジャッジ時間 18,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
62,440 KB
testcase_01 AC 41 ms
151,212 KB
testcase_02 AC 38 ms
63,060 KB
testcase_03 AC 43 ms
71,208 KB
testcase_04 AC 45 ms
70,396 KB
testcase_05 AC 37 ms
61,160 KB
testcase_06 AC 40 ms
61,520 KB
testcase_07 AC 42 ms
61,464 KB
testcase_08 AC 52 ms
65,020 KB
testcase_09 AC 43 ms
59,936 KB
testcase_10 AC 49 ms
65,852 KB
testcase_11 AC 50 ms
64,296 KB
testcase_12 AC 46 ms
60,576 KB
testcase_13 AC 49 ms
64,908 KB
testcase_14 AC 50 ms
64,160 KB
testcase_15 AC 45 ms
63,868 KB
testcase_16 AC 43 ms
60,708 KB
testcase_17 AC 52 ms
65,844 KB
testcase_18 AC 46 ms
65,408 KB
testcase_19 AC 51 ms
66,192 KB
testcase_20 AC 54 ms
67,200 KB
testcase_21 AC 49 ms
64,136 KB
testcase_22 AC 52 ms
67,252 KB
testcase_23 AC 48 ms
62,816 KB
testcase_24 AC 68 ms
76,104 KB
testcase_25 AC 81 ms
76,360 KB
testcase_26 AC 59 ms
76,296 KB
testcase_27 AC 67 ms
76,640 KB
testcase_28 AC 67 ms
76,512 KB
testcase_29 AC 64 ms
76,376 KB
testcase_30 AC 47 ms
63,456 KB
testcase_31 AC 85 ms
76,356 KB
testcase_32 AC 47 ms
62,616 KB
testcase_33 AC 79 ms
76,356 KB
testcase_34 AC 84 ms
76,244 KB
testcase_35 AC 84 ms
76,156 KB
testcase_36 AC 69 ms
76,376 KB
testcase_37 AC 70 ms
76,300 KB
testcase_38 AC 78 ms
76,312 KB
testcase_39 AC 71 ms
76,360 KB
testcase_40 AC 88 ms
76,724 KB
testcase_41 AC 87 ms
76,184 KB
testcase_42 AC 80 ms
76,488 KB
testcase_43 AC 69 ms
76,528 KB
testcase_44 AC 41 ms
53,924 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 CA[0]==1 and K==0:
    print(1)
    exit()
if CA[0]>1 and K==0:
    print(0)
    exit()
if K==0:
    print(-1)
    exit()
if sum(A)==K:
    print(N-CA[0])
    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
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