結果

問題 No.472 平均順位
ユーザー shossiissohsshossiissohs
提出日時 2018-01-09 19:02:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 1,291 ms
コンパイル使用メモリ 159,080 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 03:21:37
合計ジャッジ時間 3,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 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 9 ms
5,376 KB
testcase_09 AC 24 ms
5,376 KB
testcase_10 AC 22 ms
5,376 KB
testcase_11 AC 54 ms
5,376 KB
testcase_12 AC 45 ms
5,376 KB
testcase_13 AC 141 ms
5,376 KB
testcase_14 AC 348 ms
5,376 KB
testcase_15 AC 134 ms
5,376 KB
testcase_16 AC 386 ms
5,376 KB
testcase_17 AC 405 ms
5,376 KB
testcase_18 AC 36 ms
5,376 KB
testcase_19 AC 98 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int n,p;
int abc[5005][4];
int dp[15005];
int dpn[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;
  }
    
  fill(dpn,dpn+p+1,INF);
  
  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;
	dpn[j+k] = min(dpn[j+k], dp[j] + abc[i][k]);
      }
    
    }
    swap(dp,dpn);
    fill(dpn,dpn+p+1,INF);
  }

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