結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,888 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 AC 57 ms
65,792 KB
testcase_05 AC 60 ms
65,024 KB
testcase_06 AC 131 ms
85,084 KB
testcase_07 AC 42 ms
54,244 KB
testcase_08 AC 42 ms
54,016 KB
testcase_09 AC 48 ms
61,440 KB
testcase_10 AC 49 ms
61,440 KB
testcase_11 AC 42 ms
53,888 KB
testcase_12 AC 80 ms
79,240 KB
testcase_13 AC 55 ms
64,768 KB
testcase_14 AC 55 ms
64,768 KB
testcase_15 AC 56 ms
64,768 KB
testcase_16 RE -
testcase_17 AC 42 ms
53,888 KB
testcase_18 AC 41 ms
53,888 KB
testcase_19 AC 67 ms
70,144 KB
testcase_20 AC 42 ms
53,888 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