結果
問題 | No.472 平均順位 |
ユーザー | face4 |
提出日時 | 2018-11-18 20:13:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 841 bytes |
コンパイル時間 | 843 ms |
コンパイル使用メモリ | 72,004 KB |
実行使用メモリ | 589,880 KB |
最終ジャッジ日時 | 2024-06-06 20:54:55 |
合計ジャッジ時間 | 4,643 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 4 ms
16,036 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
7,828 KB |
testcase_07 | AC | 5 ms
18,080 KB |
testcase_08 | AC | 13 ms
52,864 KB |
testcase_09 | AC | 35 ms
120,828 KB |
testcase_10 | AC | 43 ms
149,220 KB |
testcase_11 | AC | 76 ms
190,956 KB |
testcase_12 | AC | 72 ms
183,520 KB |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | AC | 42 ms
145,284 KB |
testcase_19 | MLE | - |
ソースコード
#include<iostream> #include<iomanip> using namespace std; typedef long long ll; static ll dp[5001][15005]; const ll INF = 1ll<<60; int main(){ int n, p; cin >> n >> p; for(int i = 0; i <= n; i++){ for(int j = 0; j <= n*3; j++){ dp[i][j] = INF; } } dp[0][0] = 0; int a, b, c; for(int i = 0; i < n; i++){ cin >> a >> b >> c; for(int j = 0; j <= 3*n; j++){ if(dp[i][j] != INF){ dp[i+1][j] = min(dp[i+1][j], dp[i][j] + a); dp[i+1][j+1] = min(dp[i+1][j+1], dp[i][j] + b); dp[i+1][j+2] = min(dp[i+1][j+2], dp[i][j] + c); dp[i+1][j+3] = min(dp[i+1][j+3], dp[i][j] + 1); } } } cout << fixed << setprecision(10) << (double)(dp[n][p]) / n << endl; return 0; }