結果

問題 No.1861 Required Number
ユーザー H20H20
提出日時 2022-03-04 23:11:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,153 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 76,100 KB
最終ジャッジ日時 2024-07-18 23:15:32
合計ジャッジ時間 5,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,880 KB
testcase_01 AC 45 ms
59,776 KB
testcase_02 AC 44 ms
55,344 KB
testcase_03 WA -
testcase_04 AC 49 ms
63,860 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 48 ms
60,880 KB
testcase_08 AC 61 ms
70,176 KB
testcase_09 AC 45 ms
60,048 KB
testcase_10 AC 57 ms
68,116 KB
testcase_11 AC 52 ms
64,968 KB
testcase_12 AC 47 ms
61,944 KB
testcase_13 AC 59 ms
71,060 KB
testcase_14 AC 54 ms
64,224 KB
testcase_15 AC 56 ms
67,536 KB
testcase_16 AC 45 ms
59,524 KB
testcase_17 AC 54 ms
65,284 KB
testcase_18 AC 59 ms
71,476 KB
testcase_19 AC 69 ms
76,100 KB
testcase_20 AC 69 ms
76,020 KB
testcase_21 AC 57 ms
68,816 KB
testcase_22 AC 69 ms
75,956 KB
testcase_23 AC 53 ms
64,920 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
04_evil_1.txt -- -
04_evil_2.txt -- -
04_evil_3.txt -- -
04_evil_4.txt -- -
権限があれば一括ダウンロードができます

ソースコード

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
minb = min(B)
CB = collections.Counter(B)
for k,v in CA.items():
    if k<minb:
        CB[k]+=v
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