結果

問題 No.1457 ツブ消ししとるなHard
ユーザー titiatitia
提出日時 2021-03-31 22:36:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 939 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,632 KB
最終ジャッジ日時 2024-05-09 09:08:18
合計ジャッジ時間 2,913 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 36 ms
11,008 KB
testcase_05 AC 37 ms
10,752 KB
testcase_06 AC 939 ms
15,632 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 38 ms
11,008 KB
testcase_10 AC 37 ms
10,880 KB
testcase_11 AC 33 ms
11,008 KB
testcase_12 AC 210 ms
12,292 KB
testcase_13 AC 65 ms
11,392 KB
testcase_14 AC 35 ms
10,752 KB
testcase_15 AC 58 ms
11,008 KB
testcase_16 AC 33 ms
10,880 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 32 ms
10,880 KB
testcase_19 AC 76 ms
11,008 KB
testcase_20 AC 33 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

B=[]
C=[]

for a in A:
    if a>=X:
        C.append(a)
    elif a>Y:
        B.append(a)
        
if len(C)>M:
    print("Handicapped")
    exit()
    
B=sorted(B)
B=[b-Z for b in B]
C=[c-Z for c in C]
S=sum(C)


from collections import defaultdict
DP=defaultdict(int)
DP[(0,0)]=1
import copy

for b in B:
    NDP=copy.deepcopy(DP)

    for d,k in DP:
        if k+1<=M:
            NDP[(d+b,k+1)]+=DP[d,k]

    DP=NDP

ANS=0
for i,j in DP:
    if i==-S and j!=0:
        ANS+=DP[(i,j)]

print(ANS)





0