結果
問題 | No.472 平均順位 |
ユーザー | izryt(趣味) |
提出日時 | 2016-12-24 10:37:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 747 bytes |
コンパイル時間 | 599 ms |
コンパイル使用メモリ | 67,280 KB |
実行使用メモリ | 297,120 KB |
最終ジャッジ日時 | 2024-05-08 13:05:36 |
合計ジャッジ時間 | 3,344 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 8 ms
6,912 KB |
testcase_09 | AC | 23 ms
15,616 KB |
testcase_10 | AC | 18 ms
13,568 KB |
testcase_11 | AC | 61 ms
35,968 KB |
testcase_12 | AC | 47 ms
28,160 KB |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | AC | 43 ms
25,728 KB |
testcase_19 | MLE | - |
ソースコード
#include <iostream> #include <algorithm> #include <cstdio> using namespace std; typedef long long ll; int N, P; int a[5005][4]; int dp[5005][15005]; int main() { cin >> N >> P; for (int i = 0; i < N; ++i) { for (int j = 0; j <= 2; ++j) { cin >> a[i][j]; } a[i][3] = 1; } for (int i = 0; i <= N; ++i) for (int j = 0; j <= P; ++j) dp[i][j] = 1e9; dp[0][0] = 0; for (int i = 0; i < N; ++i) { for (int j = P; j >= 0; --j) { for (int k = 0; k <= 3; ++k) { if (j - k >= 0) { dp[i + 1][j] = min(dp[i + 1][j], dp[i][j - k] + a[i][k]); } } } } printf("%.6f\n", (double)dp[N][P] / N); }