結果

問題 No.472 平均順位
ユーザー syake_tasyake_ta
提出日時 2018-08-25 15:09:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,167 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 67,448 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 03:32:01
合計ジャッジ時間 5,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 9 ms
6,944 KB
testcase_09 AC 34 ms
6,940 KB
testcase_10 AC 22 ms
6,940 KB
testcase_11 AC 99 ms
6,940 KB
testcase_12 AC 73 ms
6,944 KB
testcase_13 AC 261 ms
6,940 KB
testcase_14 AC 969 ms
6,944 KB
testcase_15 AC 260 ms
6,940 KB
testcase_16 AC 1,096 ms
6,940 KB
testcase_17 AC 1,167 ms
6,940 KB
testcase_18 AC 70 ms
6,944 KB
testcase_19 AC 125 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <iomanip>
using namespace std;

typedef long long ll;
typedef pair<int, int> P;
const int INF = (int)1e9 + 1;

int n, p;
int dp[2][20010];
int score[5010][5];

int main(void) {
	cin >> n >> p;
	for (int i = 0; i < n; i++) {
		cin >> score[i][0] >> score[i][1] >> score[i][2];
		score[i][3] = 1;
	}

	for (int i = 0; i < 2; i++) {
		for (int j = 0; j < 20010; 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 <= 3; k++) {
				if (j + k <= p) {
					dp[1][j + k] = min(dp[1][j + k], dp[0][j] + score[i][k]);
				}
			}
		}
		for (int j = 0; j <= p; j++) {
			dp[0][j] = dp[1][j];
			dp[1][j] = INF;
		}
	}

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