結果

問題 No.472 平均順位
ユーザー Dice64Dice64
提出日時 2019-04-01 01:27:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 541 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 629,956 KB
最終ジャッジ日時 2024-05-03 02:09:31
合計ジャッジ時間 16,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 554 ms
43,984 KB
testcase_01 AC 546 ms
44,240 KB
testcase_02 AC 541 ms
44,380 KB
testcase_03 AC 524 ms
43,980 KB
testcase_04 AC 528 ms
44,232 KB
testcase_05 AC 536 ms
44,488 KB
testcase_06 AC 542 ms
44,492 KB
testcase_07 AC 539 ms
44,236 KB
testcase_08 AC 545 ms
46,912 KB
testcase_09 AC 557 ms
59,444 KB
testcase_10 AC 563 ms
53,452 KB
testcase_11 AC 618 ms
93,300 KB
testcase_12 AC 605 ms
79,156 KB
testcase_13 AC 832 ms
174,452 KB
testcase_14 MLE -
testcase_15 AC 785 ms
174,316 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 581 ms
77,796 KB
testcase_19 AC 686 ms
105,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, P = map(int, input().split())
abc = [[int(_) for _ in input().split()] for _ in range(N)]
dp = np.zeros([N+1, P+3], dtype=int)

for i in range(1, N+1):
    dp[i][0] = dp[i-1][0] + abc[i-1][0]
    dp[i][1] = min(dp[i-1][1] + abc[i-1][0], dp[i-1][0] + abc[i-1][1])
    dp[i][2] = min(dp[i-1][2]+abc[i-1][0], dp[i-1][1]+abc[i-1][1], dp[i-1][0]+abc[i-1][2])
    dp[i][3:] = np.minimum(np.minimum(np.minimum(dp[i-1][:-3]+1, dp[i-1][1:-2]+abc[i-1][2]), dp[i-1][2:-1]+abc[i-1][1]), dp[i-1][3:]+abc[i-1][0])

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