結果

問題 No.472 平均順位
ユーザー koyoprokoyopro
提出日時 2020-01-14 23:24:30
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 1,495 bytes
コンパイル時間 3,648 ms
コンパイル使用メモリ 144,420 KB
実行使用メモリ 813,904 KB
最終ジャッジ日時 2023-08-27 07:22:56
合計ジャッジ時間 7,652 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) printf(__VA_ARGS__)

int dxy[] = {0, 1, 0, -1, 0};

void solve();
signed main()
{
#if DEBUG
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
#endif
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}

/*================================*/

struct Contest {
    int a,b,c;
    
    int operator[] (int i) {
        switch (i) {
            case 0: return a;
            case 1: return b;
            case 2: return c;
            default:return 1;
        }
    }
};

int N,P;
Contest C[5555];

int DP[5555][22222];

void solve() {
    cin>>N>>P;
    REP(i,N) cin>>C[i].a>>C[i].b>>C[i].c;

    REP(n,5555)REP(p,22222)DP[n][p]=INT_MAX;
    REP(i,min((int)4, P+1)) {
        DP[0][P-i]=C[0][i];
    }
    FOR(n,1,N) REP(p,P+1) REP(i,4) {
        DP[n][p] = min(DP[n][p], DP[n-1][p+i] + C[n][i]);
    }
    int mi = INT_MAX;
    REP(p,P+1) {
        mi = min((int)mi, DP[N-1][p]);
    }
    
    out("%.10lf\n", (double)mi/N);
}
0