結果
問題 | No.472 平均順位 |
ユーザー |
![]() |
提出日時 | 2020-01-14 23:24:30 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,495 bytes |
コンパイル時間 | 2,004 ms |
コンパイル使用メモリ | 158,212 KB |
実行使用メモリ | 818,048 KB |
最終ジャッジ日時 | 2024-12-26 19:24:05 |
合計ジャッジ時間 | 30,072 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | MLE * 4 |
other | MLE * 16 |
ソースコード
#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 DEBUGstd::ifstream in("input.txt");std::cin.rdbuf(in.rdbuf());#endifcin.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);}