結果

問題 No.472 平均順位
ユーザー roarisroaris
提出日時 2019-12-16 15:44:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 652 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-07-02 19:47:23
合計ジャッジ時間 12,561 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 81 ms
73,344 KB
testcase_05 AC 41 ms
52,736 KB
testcase_06 AC 60 ms
63,360 KB
testcase_07 AC 102 ms
75,776 KB
testcase_08 AC 127 ms
76,100 KB
testcase_09 AC 203 ms
77,036 KB
testcase_10 AC 182 ms
77,592 KB
testcase_11 AC 377 ms
77,568 KB
testcase_12 AC 309 ms
77,556 KB
testcase_13 AC 803 ms
77,952 KB
testcase_14 TLE -
testcase_15 AC 837 ms
78,208 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 285 ms
77,824 KB
testcase_19 AC 450 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, P = map(int, input().split())
abc = [tuple(map(int, input().split())) for _ in range(N)]
dp = [[10**18]*(P+1) for _ in range(2)]
dp[0][0] = 0

for i in range(N):
    ai, bi, ci = abc[i]
    
    for j in range(P+1):
        dp[(i+1)&1][j] = 10**18
        
    for j in range(P+1):
        dp[(i+1)&1][j] = min(dp[(i+1)&1][j], dp[i&1][j]+ai)
        
        if j+1<=P:
            dp[(i+1)&1][j+1] = min(dp[(i+1)&1][j+1], dp[i&1][j]+bi)
        
        if j+2<=P:
            dp[(i+1)&1][j+2] = min(dp[(i+1)&1][j+2], dp[i&1][j]+ci)
        
        if j+3<=P:
            dp[(i+1)&1][j+3] = min(dp[(i+1)&1][j+3], dp[i&1][j]+1)

print(dp[N&1][P]/N)
0