結果

問題 No.472 平均順位
ユーザー muripoyotaromuripoyotaro
提出日時 2018-10-24 14:27:58
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 569 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 202,312 KB
実行使用メモリ 589,716 KB
最終ジャッジ日時 2024-11-19 05:19:38
合計ジャッジ時間 5,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 5 ms
6,932 KB
testcase_09 AC 16 ms
19,200 KB
testcase_10 AC 11 ms
13,264 KB
testcase_11 AC 44 ms
53,212 KB
testcase_12 AC 31 ms
38,424 KB
testcase_13 AC 121 ms
133,804 KB
testcase_14 MLE -
testcase_15 AC 123 ms
133,816 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 31 ms
37,592 KB
testcase_19 AC 56 ms
65,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
int main(){
  int N,P;
  cin>>N>>P;
  double dp[N+1][P+1]; //i問目まで見た j問解いた
  for(int i=0; i<=N; i++){
    for(int j=0; j<=P; j++){
      dp[i][j]=(ll)5e9;
    }
  }
  dp[0][0]=0;
  for(int i=0; i<N; i++){
    int v[4];
    cin>>v[0]>>v[1]>>v[2];
    v[3]=1;
    for(int j=0; j<=P; j++){
     	for(int k=0; k<4; k++){
          if(j>=k){
            dp[i+1][j]=min(dp[i][j-k]+v[k],dp[i+1][j]);
          }
        }
    }
  }
  cout<<setprecision(8)<<dp[N][P]/N<<endl;
}
          
0