結果
問題 | No.472 平均順位 |
ユーザー | terrafarm |
提出日時 | 2020-12-14 06:57:35 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,196 bytes |
コンパイル時間 | 513 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 675,168 KB |
最終ジャッジ日時 | 2024-09-20 00:28:46 |
合計ジャッジ時間 | 8,876 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 89 ms
80,108 KB |
testcase_02 | AC | 90 ms
80,028 KB |
testcase_03 | AC | 91 ms
80,000 KB |
testcase_04 | AC | 113 ms
81,048 KB |
testcase_05 | AC | 90 ms
80,256 KB |
testcase_06 | AC | 100 ms
80,512 KB |
testcase_07 | AC | 127 ms
81,080 KB |
testcase_08 | AC | 149 ms
85,096 KB |
testcase_09 | AC | 218 ms
97,536 KB |
testcase_10 | AC | 202 ms
92,152 KB |
testcase_11 | AC | 410 ms
131,884 KB |
testcase_12 | AC | 335 ms
117,488 KB |
testcase_13 | AC | 939 ms
213,248 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 900 ms
213,120 KB |
testcase_16 | TLE | - |
testcase_17 | MLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import logging import sys from inspect import currentframe sys.setrecursionlimit(10 ** 6) input = sys.stdin.readline logging.basicConfig(level=logging.DEBUG) def dbg(*args): id2names = {id(v): k for k, v in currentframe().f_back.f_locals.items()} logging.debug( ", ".join(id2names.get(id(arg), "???") + " = " + repr(arg) for arg in args) ) def main(): INF = 10 ** 10 n, p = map(int, input().split()) a = [0] * n b = [0] * n c = [0] * n for i in range(n): a[i], b[i], c[i] = map(int, input().split()) dp = [[INF] * (p + 1) for _ in range(n + 1)] dp[0][0] = 0 for i in range(n): for j in range(p + 1): if j <= p: dp[i + 1][j] = min(dp[i][j] + a[i], dp[i + 1][j]) if j + 1 <= p: dp[i + 1][j + 1] = min(dp[i][j] + b[i], dp[i + 1][j + 1]) if j + 2 <= p: dp[i + 1][j + 2] = min(dp[i][j] + c[i], dp[i + 1][j + 2]) if j + 3 <= p: dp[i + 1][j + 3] = min(dp[i][j] + 1, dp[i + 1][j + 3]) # for i in range(n + 1): # dbg(dp[i]) ans = dp[n][p] / n print(ans) if __name__ == "__main__": main()