結果

問題 No.1457 ツブ消ししとるなHard
ユーザー shotoyooshotoyoo
提出日時 2021-03-31 21:57:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 783 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 67,804 KB
最終ジャッジ日時 2024-05-09 07:35:06
合計ジャッジ時間 1,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,600 KB
testcase_01 AC 36 ms
52,316 KB
testcase_02 AC 39 ms
53,940 KB
testcase_03 AC 38 ms
54,184 KB
testcase_04 AC 40 ms
54,908 KB
testcase_05 AC 40 ms
54,988 KB
testcase_06 AC 56 ms
67,672 KB
testcase_07 AC 36 ms
52,592 KB
testcase_08 AC 37 ms
53,656 KB
testcase_09 AC 43 ms
54,592 KB
testcase_10 AC 40 ms
54,048 KB
testcase_11 AC 40 ms
54,748 KB
testcase_12 AC 58 ms
67,804 KB
testcase_13 AC 49 ms
62,160 KB
testcase_14 WA -
testcase_15 AC 42 ms
54,988 KB
testcase_16 AC 40 ms
54,780 KB
testcase_17 AC 37 ms
53,928 KB
testcase_18 AC 40 ms
54,188 KB
testcase_19 AC 43 ms
54,636 KB
testcase_20 AC 39 ms
54,308 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] = 1
    for i in range(len(a)):
        v = a[i]
        ndp = defaultdict(int)
        for k in dp:
            ndp[k] += dp[k]
            ndp[k+v] += dp[k]
        dp = ndp
#         print(dp, v)
    ans = dp[target]
    if target==0 and len(b)==0:
        ans -= 1
    print(ans)
0