結果

問題 No.1457 ツブ消ししとるなHard
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-31 23:02:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,088 bytes
コンパイル時間 1,177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-05-09 09:52:53
合計ジャッジ時間 4,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,264 KB
testcase_01 AC 37 ms
54,016 KB
testcase_02 AC 37 ms
53,888 KB
testcase_03 AC 37 ms
53,888 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n,m,x,y,z = map(int,input().split())
A = sorted(list(map(int,input().split())))
dif = 0
size = 0
for i in range(n)[::-1]:
    if A[i] >= x:
        dif += A[i]-z
        size += 1
        A.pop()

if size > m:
    print("Handicapped")
    exit()
A = A[::-1]
for i in range(len(A))[::-1]:
    if A[i] <= y:
        A.pop()

n = len(A)
dic = {}

half = (n+1)//2
for i in range(1<<half):
    s = bin(i).count("1")
    if s+size > m:
        continue
    count = 0
    for j in range(half):
        if i >> j & 1:
            count += A[j]-z
    #print(dic)
    if count in dic:
        dic[count][s] += 1
    else:
        dic[count] = [0]*(51)
        dic[count][s] = 1

for i in dic.keys():
    for j in range(50):
        dic[i][j+1] += dic[i][j]
A = A[::-1]
ans = 0
for i in range(1<<n-half):
    s = bin(i).count("1")
    if s+size > m:
        continue
    count = 0
    for j in range(n-half):
        if i >> j & 1:
            count += z-A[j]
    if count-dif in dic:
        ans += dic[count-dif][m-s-size]
if size == 0:
    ans -= 1
print(ans)
0