結果

問題 No.472 平均順位
ユーザー furafura
提出日時 2020-06-10 10:15:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 201,316 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 06:06:00
合計ジャッジ時間 4,558 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 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,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 12 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 35 ms
6,940 KB
testcase_12 AC 26 ms
6,944 KB
testcase_13 AC 88 ms
6,940 KB
testcase_14 AC 323 ms
6,940 KB
testcase_15 AC 89 ms
6,944 KB
testcase_16 AC 366 ms
6,940 KB
testcase_17 AC 388 ms
6,940 KB
testcase_18 AC 25 ms
6,940 KB
testcase_19 AC 43 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

const int INF=1<<29;

int main(){
	int n,m; scanf("%d%d",&n,&m);

	int dp[2][15001];
	rep(j,m+1) dp[0][j]=(j==m?0:INF);
	rep(i,n){
		int a[4];
		rep(k,3) scanf("%d",&a[k]);
		a[3]=1;

		int curr=i%2,next=(i+1)%2;
		rep(j,m+1) dp[next][j]=INF;
		rep(j,m+1) rep(k,4) if(j>=k) dp[next][j-k]=min(dp[next][j-k],dp[curr][j]+a[k]);
		rep(j,m+1) dp[curr][j]=dp[next][j];
	}

	printf("%.9f\n",1.0**min_element(dp[n%2],dp[n%2]+m+1)/n);

	return 0;
}
0