結果

問題 No.472 平均順位
ユーザー mamekinmamekin
提出日時 2017-06-11 12:43:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 1,002 ms
コンパイル使用メモリ 103,648 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 16:08:52
合計ジャッジ時間 3,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,948 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 AC 36 ms
6,940 KB
testcase_12 AC 27 ms
6,944 KB
testcase_13 AC 91 ms
6,944 KB
testcase_14 AC 316 ms
6,940 KB
testcase_15 AC 91 ms
6,940 KB
testcase_16 AC 368 ms
6,940 KB
testcase_17 AC 381 ms
6,944 KB
testcase_18 AC 26 ms
6,944 KB
testcase_19 AC 46 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <complex>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
#include <iterator>
using namespace std;

const int INF = INT_MAX / 2;

int main()
{
    int n, p;
    cin >> n >> p;

    vector<int> dp(p+1, INF);
    dp[p] = 0;
    for(int i=0; i<n; ++i){
        vector<int> v(4, 1);
        for(int i=0; i<3; ++i)
            cin >> v[i];

        vector<int> nextDp(p+1, INF);
        for(int j=0; j<=p; ++j){
            for(int k=0; k<=min(3,j); ++k){
                nextDp[j-k] = min(nextDp[j-k], dp[j] + v[k]);
            }
        }
        dp.swap(nextDp);
    }

    double ans = dp[0] / (double)n;
    printf("%.10f\n", ans);

    return 0;
}
0