結果

問題 No.1457 ツブ消ししとるなHard
ユーザー shotoyooshotoyoo
提出日時 2021-03-31 22:03:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 863 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-05-09 07:49:04
合計ジャッジ時間 2,071 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,400 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 36 ms
53,504 KB
testcase_03 AC 40 ms
54,016 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 34 ms
51,968 KB
testcase_09 AC 52 ms
65,152 KB
testcase_10 AC 47 ms
64,768 KB
testcase_11 AC 41 ms
54,272 KB
testcase_12 AC 91 ms
77,440 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 62 ms
73,600 KB
testcase_16 AC 39 ms
54,016 KB
testcase_17 AC 32 ms
52,096 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")

n,m,x,y,z = list(map(int, input().split()))
V = "Handicapped"
a = list(map(int, input().split()))
b = [a[i] for i in range(n) if a[i]>=x]
a = [a[i]-z for i in range(n) if x>a[i]>y]
if len(b)>m:
    print(V)
else:
    from collections import defaultdict
    target = z*len(b) - sum(b)
    dp = defaultdict(int)
    dp[0,0] = 1
    for i in range(len(a)):
        v = a[i]
        ndp = defaultdict(int)
        for k,num in dp:
            ndp[k,num] += dp[k,num]
            ndp[k+v,num+1] += dp[k,num]
        dp = ndp
#         print(dp, v)
    ans = 0
    for k,num in dp:
        if k==target and num<=m and (num - int(len(b)==0) > 0):
            ans += dp[k,num]
    print(ans)
0