結果

問題 No.472 平均順位
ユーザー cielciel
提出日時 2016-12-22 01:39:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 450 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 34,944 KB
実行使用メモリ 317,216 KB
最終ジャッジ日時 2024-05-08 10:54:17
合計ジャッジ時間 7,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,884 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,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 16 ms
6,944 KB
testcase_09 AC 74 ms
17,664 KB
testcase_10 AC 56 ms
16,512 KB
testcase_11 AC 247 ms
45,952 KB
testcase_12 AC 179 ms
37,120 KB
testcase_13 AC 737 ms
139,392 KB
testcase_14 MLE -
testcase_15 AC 872 ms
141,124 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include <stdio.h>
int v[5000][4],n;
long long memo[5000][15001];
long long dfs(int d,int r){
	if(d==n)return 0;
	if(!memo[d][r]){
		memo[d][r]=1LL<<60;
		for(int i=0;i<=(r<3?r:3);i++)if(memo[d][r]>dfs(d+1,r-i)+v[d][i])memo[d][r]=dfs(d+1,r-i)+v[d][i];
	}
	return memo[d][r];
}
int main(){
	int k;
	scanf("%d%d",&n,&k);
	for(int i=0;i<n;v[i][3]=1,i++)for(int j=0;j<3;j++)scanf("%d",v[i]+j);
	printf("%f\n",dfs(0,k)*1.0/n);
}
0