結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 548 ms
44,236 KB
testcase_01 AC 504 ms
44,108 KB
testcase_02 AC 505 ms
44,492 KB
testcase_03 AC 504 ms
44,112 KB
testcase_04 AC 506 ms
44,236 KB
testcase_05 AC 500 ms
43,980 KB
testcase_06 AC 505 ms
44,492 KB
testcase_07 AC 507 ms
44,112 KB
testcase_08 AC 516 ms
47,152 KB
testcase_09 AC 539 ms
59,468 KB
testcase_10 AC 537 ms
53,624 KB
testcase_11 AC 586 ms
93,380 KB
testcase_12 AC 578 ms
78,860 KB
testcase_13 AC 746 ms
174,324 KB
testcase_14 MLE -
testcase_15 AC 725 ms
174,356 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 561 ms
78,164 KB
testcase_19 AC 696 ms
106,448 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