結果

問題 No.472 平均順位
ユーザー muripoyotaromuripoyotaro
提出日時 2018-10-24 14:27:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 569 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 201,200 KB
実行使用メモリ 589,844 KB
最終ジャッジ日時 2024-04-29 21:19:15
合計ジャッジ時間 5,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 6 ms
6,948 KB
testcase_09 AC 17 ms
19,188 KB
testcase_10 AC 11 ms
13,228 KB
testcase_11 AC 47 ms
53,248 KB
testcase_12 AC 34 ms
38,484 KB
testcase_13 AC 142 ms
133,788 KB
testcase_14 MLE -
testcase_15 AC 135 ms
133,952 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 32 ms
37,708 KB
testcase_19 AC 59 ms
65,536 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