結果

問題 No.472 平均順位
ユーザー face4face4
提出日時 2018-11-18 20:13:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 841 bytes
コンパイル時間 963 ms
コンパイル使用メモリ 70,528 KB
実行使用メモリ 589,952 KB
最終ジャッジ日時 2024-12-24 15:06:58
合計ジャッジ時間 5,922 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 9 ms
9,600 KB
testcase_09 AC 33 ms
31,360 KB
testcase_10 AC 46 ms
44,416 KB
testcase_11 AC 84 ms
96,000 KB
testcase_12 AC 77 ms
84,736 KB
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 44 ms
42,752 KB
testcase_19 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0