結果

問題 No.1861 Required Number
ユーザー 👑 KazunKazun
提出日時 2022-03-04 22:31:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 744 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 76,880 KB
最終ジャッジ日時 2024-07-18 23:08:02
合計ジャッジ時間 4,771 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,628 KB
testcase_01 AC 38 ms
59,332 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 139 ms
71,824 KB
testcase_05 WA -
testcase_06 AC 39 ms
55,608 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
60,376 KB
testcase_10 AC 41 ms
61,428 KB
testcase_11 AC 42 ms
61,176 KB
testcase_12 AC 42 ms
61,052 KB
testcase_13 AC 46 ms
60,860 KB
testcase_14 AC 44 ms
59,964 KB
testcase_15 AC 44 ms
60,956 KB
testcase_16 AC 41 ms
58,772 KB
testcase_17 AC 45 ms
60,512 KB
testcase_18 AC 46 ms
60,320 KB
testcase_19 AC 48 ms
62,196 KB
testcase_20 AC 45 ms
60,964 KB
testcase_21 AC 46 ms
60,692 KB
testcase_22 AC 45 ms
60,976 KB
testcase_23 AC 46 ms
61,764 KB
testcase_24 AC 76 ms
70,308 KB
testcase_25 AC 111 ms
71,600 KB
testcase_26 AC 62 ms
69,064 KB
testcase_27 AC 70 ms
71,076 KB
testcase_28 AC 75 ms
71,620 KB
testcase_29 AC 82 ms
76,360 KB
testcase_30 AC 62 ms
71,560 KB
testcase_31 AC 116 ms
71,940 KB
testcase_32 AC 62 ms
70,788 KB
testcase_33 AC 91 ms
71,440 KB
testcase_34 AC 100 ms
73,128 KB
testcase_35 AC 97 ms
71,984 KB
testcase_36 AC 65 ms
70,468 KB
testcase_37 AC 72 ms
72,068 KB
testcase_38 AC 128 ms
76,764 KB
testcase_39 AC 76 ms
72,316 KB
testcase_40 AC 102 ms
72,740 KB
testcase_41 AC 131 ms
76,880 KB
testcase_42 AC 91 ms
73,032 KB
testcase_43 AC 74 ms
72,604 KB
testcase_44 WA -
04_evil_1.txt RE -
04_evil_2.txt RE -
04_evil_3.txt RE -
04_evil_4.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def f(A):
    A=["*"]+A
    DP=[-1]*(K+1); DP[0]=0

    for i,a in enumerate(A[1:],1):
        for y in range(K,a-1,-1):
            if DP[y-a]>=0 and DP[y]==-1:
                DP[y]=i
    if DP[K]==-1:
        return None

    X=[]; x=K
    while x>0:
        X.append(DP[x])
        x-=A[DP[x]]
    return X
#==================================================
N,K=map(int,input().split())
A=list(map(int,input().split()))
A.sort()

assert (N<=10**4) and (K<=10**3)

P=f(A)
if P==None:
    exit(print(-1))

Q=[N-k+1 for k in f(A[::-1])]

C=defaultdict(int)
for a in A:
    C[a]+=1

D=defaultdict(int)
for a in set(P)&set(Q):
    D[a]+=1

Ans=0
for a in C:
    if C[a]==D[a]:
        Ans+=C[a]

print(Ans)
0