結果

問題 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,544 KB
実行使用メモリ 629,500 KB
最終ジャッジ日時 2024-11-23 22:26:12
合計ジャッジ時間 19,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
44,240 KB
testcase_01 AC 531 ms
43,980 KB
testcase_02 AC 533 ms
43,848 KB
testcase_03 AC 542 ms
44,104 KB
testcase_04 AC 535 ms
44,108 KB
testcase_05 AC 533 ms
44,104 KB
testcase_06 AC 541 ms
44,236 KB
testcase_07 AC 539 ms
43,976 KB
testcase_08 AC 547 ms
47,116 KB
testcase_09 AC 571 ms
59,228 KB
testcase_10 AC 575 ms
53,132 KB
testcase_11 AC 649 ms
93,136 KB
testcase_12 AC 627 ms
78,240 KB
testcase_13 AC 830 ms
173,724 KB
testcase_14 MLE -
testcase_15 AC 870 ms
174,164 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 688 ms
77,832 KB
testcase_19 AC 723 ms
105,424 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