結果

問題 No.472 平均順位
ユーザー shossiissohsshossiissohs
提出日時 2018-01-09 18:20:56
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 659 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 158,428 KB
実行使用メモリ 296,832 KB
最終ジャッジ日時 2024-06-06 03:21:10
合計ジャッジ時間 4,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 7 ms
6,912 KB
testcase_09 AC 21 ms
15,360 KB
testcase_10 AC 16 ms
13,440 KB
testcase_11 AC 58 ms
35,968 KB
testcase_12 AC 43 ms
28,160 KB
testcase_13 AC 150 ms
88,832 KB
testcase_14 MLE -
testcase_15 AC 155 ms
88,832 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 41 ms
25,344 KB
testcase_19 AC 83 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int n,p;
int abc[5005][4];
int dp[5005][15005];
const int INF = 1e9;
int main() {
  cin >> n >> p;
  for(int i = 0; i < n; i++) {
    for(int j = 0; j < 3; j++) {
      cin >> abc[i][j];
    }
    abc[i][3] = 1;
  }
  for(int i = 0; i <= n; i++) {
    for(int j = 0; j <=p; j++) {
	dp[i][j]= INF;
      }
    }
  

  dp[0][0] = 0;

  for(int i = 0; i < n; i++) {
    for(int j = 0; j <= p; j++) {
      for(int k = 0; k < 4; k++) {
	if(j + k > p) continue;
	dp[i+1][j+k] = min(dp[i+1][j+k],dp[i][j] + abc[i][k]);
      }
    }
  }

  cout << fixed << setprecision(10) << dp[n][p] / (double)n << endl;
}
  
    
0