結果
問題 | No.472 平均順位 |
ユーザー | tomoish |
提出日時 | 2020-01-09 00:54:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,310 bytes |
コンパイル時間 | 1,315 ms |
コンパイル使用メモリ | 167,428 KB |
実行使用メモリ | 591,360 KB |
最終ジャッジ日時 | 2024-05-02 13:26:49 |
合計ジャッジ時間 | 11,094 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
ソースコード
// #pragma GCC optimize("Ofast") // #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") #include<bits/stdc++.h> #define ll long long #define ull unsigned long long #define pii pair<int,int> #define pp pair<pair<ll, ll>,pair<ll, ll>> #define pll pair<ll,ll> #define pdd pair<double,double> #define vii vector<int> #define vll vector<ll> #define mat vector<vector<ll>> #define lb lower_bound #define ub upper_bound #define pb push_back #define fi first #define sc second #define rep(i,n) for(ll i=0;i<n;i++) #define rep2(i,a,b) for(ll i=a;i<b;i++) #define repr(i,n) for(ll i=n-1;i>=0;i--) #define all(x) x.begin(),x.end() #define sz(x) (ll) (x).size() #define pq priority_queue<ll> #define pqg priority_queue<ll,vector<ll>,greater<ll>> #define LB(v,x) (lower_bound(v.begin(),v.end(),x)-v.begin()) #define UB(v,x) (upper_bound(v.begin(),v.end(),x)-v.begin()) #define ERASE(v) sort(v.begin(),v.end());v.erase(unique(v.begin(),v.end()),v.end()) #define int ll using namespace std; const ll INF = (1 << 30 ) - 1; const ll LLINF = (1LL << 60LL); const ll MOD = 1000000007; const ll mod = 998244353; const ll MAX = 1100000; const double pi = acos(-1); const double eps = 1e-10; ll dx[4] ={1,0,-1,0} , dy[4] ={0,1,0,-1}; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } struct Timer{ chrono::system_clock::time_point start, end; Timer(){ start = chrono::system_clock::now(); } ~Timer(){ end = chrono::system_clock::now(); auto msec = chrono::duration_cast<chrono::milliseconds>(end - start).count(); cerr<<"time : "<<msec<<" ms"<<endl; } }; ll dp[5010][15010]; signed main(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(15); // Timer TM; ll n,p; cin>>n>>p; ll a[5010][4]; rep(i,n){ cin>>a[i][0]>>a[i][1]>>a[i][2]; a[i][3]=1; } rep(i,5010)rep(j,15010) dp[i][j]=LLINF; dp[0][0]=0; rep(i,n){ rep(j,p+1){ if(dp[i][j]==LLINF) continue; rep(k,4){ chmin(dp[i+1][j+k],dp[i][j]+a[i][k]); } } } cout<<(double)dp[n][p]/(double)n<<endl; return 0; }