結果

問題 No.472 平均順位
ユーザー Dice64Dice64
提出日時 2019-04-01 01:26:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 542 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 630,640 KB
最終ジャッジ日時 2024-05-03 01:37:20
合計ジャッジ時間 18,324 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
44,496 KB
testcase_01 AC 507 ms
43,992 KB
testcase_02 AC 506 ms
44,364 KB
testcase_03 AC 504 ms
43,992 KB
testcase_04 AC 512 ms
44,108 KB
testcase_05 AC 507 ms
44,364 KB
testcase_06 AC 510 ms
44,376 KB
testcase_07 AC 522 ms
44,108 KB
testcase_08 AC 530 ms
47,400 KB
testcase_09 AC 554 ms
59,732 KB
testcase_10 AC 551 ms
53,572 KB
testcase_11 AC 622 ms
93,384 KB
testcase_12 AC 600 ms
78,544 KB
testcase_13 AC 786 ms
174,152 KB
testcase_14 MLE -
testcase_15 AC 781 ms
174,800 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 606 ms
78,004 KB
testcase_19 AC 712 ms
106,060 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+10], 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