結果

問題 No.1457 ツブ消ししとるなHard
ユーザー 👑 KazunKazun
提出日時 2021-06-14 03:18:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 851 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 84,804 KB
最終ジャッジ日時 2024-12-23 19:05:58
合計ジャッジ時間 2,171 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,192 KB
testcase_01 AC 39 ms
54,136 KB
testcase_02 AC 41 ms
53,936 KB
testcase_03 AC 42 ms
55,108 KB
testcase_04 AC 57 ms
66,196 KB
testcase_05 AC 49 ms
65,512 KB
testcase_06 AC 122 ms
84,804 KB
testcase_07 AC 43 ms
54,052 KB
testcase_08 AC 40 ms
54,184 KB
testcase_09 AC 45 ms
63,308 KB
testcase_10 AC 44 ms
63,180 KB
testcase_11 AC 39 ms
54,700 KB
testcase_12 AC 70 ms
79,280 KB
testcase_13 AC 50 ms
65,792 KB
testcase_14 AC 50 ms
65,476 KB
testcase_15 AC 49 ms
66,128 KB
testcase_16 RE -
testcase_17 AC 36 ms
54,372 KB
testcase_18 AC 37 ms
54,456 KB
testcase_19 AC 59 ms
72,508 KB
testcase_20 AC 38 ms
55,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N,M,X,Y,Z=map(int,input().split())
A=list(map(int,input().split()))

delete_like=delete_count=0
hold_like=hold_count=0

B=[]
for a in A:
    if a<=Y:
        delete_like+=a
        delete_count+=1
    elif a>=X:
        hold_like+=a
        hold_count+=1
    else:
        B.append(a-Z)

if hold_count>M:
    exit(print("Handicapped"))

if hold_count==N:
    exit(print(1 if sum(A)==N*Z else 0))

DP=[[defaultdict(int) for _ in range(len(B)+2)] for _ in range(len(B)+1)]
DP[0][0][0]=1

for i,b in enumerate(B,1):
    D=DP[i]; E=DP[i-1]
    for k in range(len(B)+1):
        e=E[k]
        d1=D[k]
        d2=D[k+1]
        for s in DP[i-1][k]:
            d1[s]+=e[s]
            d2[s+b]+=e[s]

U=hold_like-hold_count*Z
Ans=0
for i in range(M-hold_count+1):
    Ans+=DP[-1][i][-U]

if U==0:
    Ans-=1

print(Ans)
0