結果

問題 No.1457 ツブ消ししとるなHard
ユーザー KazunKazun
提出日時 2021-06-14 03:20:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 864 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 84,984 KB
最終ジャッジ日時 2024-06-06 06:42:05
合計ジャッジ時間 2,208 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 59 ms
65,732 KB
testcase_05 AC 56 ms
64,896 KB
testcase_06 AC 133 ms
84,984 KB
testcase_07 AC 45 ms
53,376 KB
testcase_08 AC 47 ms
53,632 KB
testcase_09 AC 56 ms
61,568 KB
testcase_10 AC 51 ms
61,824 KB
testcase_11 AC 46 ms
53,888 KB
testcase_12 AC 84 ms
79,024 KB
testcase_13 AC 58 ms
64,768 KB
testcase_14 AC 58 ms
64,896 KB
testcase_15 AC 59 ms
65,280 KB
testcase_16 AC 46 ms
53,888 KB
testcase_17 AC 44 ms
53,632 KB
testcase_18 AC 45 ms
53,760 KB
testcase_19 AC 68 ms
70,468 KB
testcase_20 AC 44 ms
53,504 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(min(len(B),M-hold_count)+1):
    Ans+=DP[-1][i][-U]

if U==0:
    Ans-=1

print(Ans)
0