結果

問題 No.472 平均順位
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-06-05 01:44:52
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 781 bytes
コンパイル時間 1,496 ms
コンパイル使用メモリ 162,132 KB
実行使用メモリ 589,696 KB
最終ジャッジ日時 2024-05-08 02:04:12
合計ジャッジ時間 5,709 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_08 AC 7 ms
6,912 KB
testcase_09 AC 27 ms
19,072 KB
testcase_10 AC 16 ms
13,056 KB
testcase_11 AC 75 ms
52,992 KB
testcase_12 AC 53 ms
38,144 KB
testcase_13 AC 201 ms
133,888 KB
testcase_14 MLE -
testcase_15 AC 205 ms
133,760 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 55 ms
37,504 KB
testcase_19 AC 99 ms
65,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.06.05 01:44:48
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n,p;cin >> n >> p;
    vector<vector<double>> dp(n+1,vector<double>(p+1,0));
    dp[0][0] = 0;
    for (int i = 0; i < n; i++) {
        int a,b,c;cin >> a >> b >> c;
        for (int j = 0; j <= p; j++) {
            dp[i + 1][j] = (dp[i][j] * i + a) / (i + 1);
            if (j - 1 >= 0) dp[i + 1][j] = min(dp[i + 1][j],(dp[i][j-1] * i + b) / (i + 1));
            if (j - 2 >= 0) dp[i + 1][j] = min(dp[i + 1][j],(dp[i][j-2] * i + c) / (i + 1));
            if (j - 3 >= 0) dp[i + 1][j] = min(dp[i + 1][j],(dp[i][j-3] * i + 1) / (i + 1));
        }
    }
    printf("%.10f",dp[n][p]);
    return 0;
}
0