結果

問題 No.1457 ツブ消ししとるなHard
ユーザー mkawa2mkawa2
提出日時 2021-03-31 23:56:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,309 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-05-09 10:54:05
合計ジャッジ時間 3,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
11,008 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 39 ms
11,008 KB
testcase_03 AC 37 ms
11,008 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 39 ms
10,880 KB
testcase_08 AC 39 ms
10,880 KB
testcase_09 AC 180 ms
11,392 KB
testcase_10 AC 172 ms
11,392 KB
testcase_11 AC 112 ms
11,264 KB
testcase_12 AC 738 ms
12,032 KB
testcase_13 AC 367 ms
11,776 KB
testcase_14 AC 85 ms
11,136 KB
testcase_15 AC 401 ms
11,648 KB
testcase_16 AC 354 ms
12,928 KB
testcase_17 AC 38 ms
10,752 KB
testcase_18 AC 40 ms
10,880 KB
testcase_19 TLE -
testcase_20 AC 40 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

n,m,x,y,z=LI()
aa0=LI()
s=0
cnt=0
aa=[]

for a in aa0:
    if a<=y:continue
    if a>=x:
        s+=a-z
        cnt+=1
    else:
        aa.append(a-z)

if cnt>m:
    print("Handicapped")
    exit()

m-=cnt
s=-s
n=len(aa)
base=2500

dp=[[0]*(base*2+1) for _ in range(m+1)]
dp[0][base]=1

for a in aa:
    dpi=dp[m]
    for i in range(m-1,-1,-1):
        dpi1=dpi
        dpi=dp[i]
        for j in range(base*2+1):
            pre=dpi[j]
            if pre==0:continue
            nj=j+a
            if 0<=nj<=base*2:
                dpi1[nj]+=pre

ans=sum(dp[i][s+base] for i in range(1,m+1))
print(ans)
0