結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
62,728 KB
testcase_01 AC 44 ms
151,052 KB
testcase_02 AC 41 ms
62,180 KB
testcase_03 WA -
testcase_04 AC 47 ms
69,624 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 50 ms
62,224 KB
testcase_08 AC 60 ms
69,616 KB
testcase_09 AC 44 ms
60,856 KB
testcase_10 AC 70 ms
73,404 KB
testcase_11 AC 60 ms
68,052 KB
testcase_12 AC 46 ms
61,000 KB
testcase_13 AC 76 ms
76,384 KB
testcase_14 AC 58 ms
66,068 KB
testcase_15 AC 61 ms
68,464 KB
testcase_16 AC 45 ms
60,908 KB
testcase_17 AC 60 ms
67,680 KB
testcase_18 AC 65 ms
70,320 KB
testcase_19 AC 73 ms
76,268 KB
testcase_20 AC 78 ms
76,248 KB
testcase_21 AC 63 ms
70,556 KB
testcase_22 AC 73 ms
76,016 KB
testcase_23 AC 56 ms
66,768 KB
testcase_24 AC 237 ms
76,696 KB
testcase_25 AC 418 ms
76,508 KB
testcase_26 AC 96 ms
76,916 KB
testcase_27 AC 114 ms
76,576 KB
testcase_28 AC 179 ms
76,592 KB
testcase_29 AC 93 ms
76,928 KB
testcase_30 AC 49 ms
63,764 KB
testcase_31 AC 488 ms
77,160 KB
testcase_32 AC 49 ms
62,764 KB
testcase_33 AC 269 ms
76,756 KB
testcase_34 AC 349 ms
76,280 KB
testcase_35 AC 324 ms
76,740 KB
testcase_36 AC 89 ms
76,788 KB
testcase_37 AC 119 ms
76,328 KB
testcase_38 AC 359 ms
77,092 KB
testcase_39 AC 147 ms
76,512 KB
testcase_40 AC 390 ms
76,788 KB
testcase_41 AC 440 ms
76,660 KB
testcase_42 AC 259 ms
76,496 KB
testcase_43 AC 139 ms
76,836 KB
testcase_44 AC 41 ms
54,364 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()))

CA = collections.Counter(A)
if sum(A)==K:
    print(N)
    exit()
if CA[1]>K:
    print(0)
    exit()


A.sort()
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)

A.sort(reverse=True)
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)
CC = collections.Counter(B)

CC = CC-CB

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


for k,v in CC.items():
    if CC[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