結果

問題 No.155 生放送とBGM
ユーザー ayaoniayaoni
提出日時 2021-05-09 07:03:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,274 ms / 6,000 ms
コード長 1,522 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 277,604 KB
最終ジャッジ日時 2024-09-17 13:50:10
合計ジャッジ時間 8,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,274 ms
259,976 KB
testcase_01 AC 1,220 ms
260,260 KB
testcase_02 AC 1,245 ms
260,020 KB
testcase_03 AC 34 ms
53,488 KB
testcase_04 AC 111 ms
78,184 KB
testcase_05 AC 35 ms
52,336 KB
testcase_06 AC 1,251 ms
260,112 KB
testcase_07 AC 61 ms
73,584 KB
testcase_08 AC 58 ms
70,636 KB
testcase_09 AC 72 ms
77,184 KB
testcase_10 AC 60 ms
71,324 KB
testcase_11 AC 72 ms
78,240 KB
testcase_12 AC 74 ms
78,376 KB
testcase_13 AC 59 ms
73,404 KB
testcase_14 AC 1,014 ms
277,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,L = MI()
L *= 60
S = LS()

songs = [0]  # 1-index
for s in S:
    m,s = map(int,s.split(':'))
    songs.append(60*m+s)

if sum(songs) <= L:
    print(N)
    exit()

dp = [[0]*L for _ in range(N+1)]
# dp[i][j][k] = 1~i曲目からj曲選んで、合計再生時間k秒となる組み合わせ
# メモリ節約のため、i省略
dp[0][0] = 1
for i in range(1,N+1):
    s = songs[i]
    for j in range(i,-1,-1):
        for k in range(L-1,-1,-1):
            if j >= 1 and k >= s:
                dp[j][k] += dp[j-1][k-s]

fac = [1]
for i in range(1,N+1):
    fac.append(fac[-1]*i)

# 戻すdp

ans = 0
for i in range(1,N+1):
    dp2 = [[0]*L for _ in range(N+1)]
    # dp2[j][k] = i曲目以外のj曲選んで、合計再生時間k秒となる組み合わせ
    s = songs[i]
    for j in range(N):
        coefficient = fac[j]*fac[N-j-1]/fac[N]
        for k in range(L):
            if j >= 1 and k >= s:
                dp2[j][k] = dp[j][k]-dp2[j-1][k-s]
            else:
                dp2[j][k] = dp[j][k]

            ans += dp2[j][k]*coefficient

print(ans)
0