結果

問題 No.472 平均順位
ユーザー kyawashellkyawashell
提出日時 2018-03-28 12:44:38
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,206 bytes
コンパイル時間 7,167 ms
コンパイル使用メモリ 252,888 KB
最終ジャッジ日時 2025-01-05 09:39:22
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,824 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 4 ms
10,604 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 4 ms
8,048 KB
testcase_07 AC 5 ms
10,576 KB
testcase_08 AC 17 ms
30,300 KB
testcase_09 AC 67 ms
68,668 KB
testcase_10 AC 58 ms
83,668 KB
testcase_11 AC 204 ms
128,616 KB
testcase_12 AC 157 ms
118,860 KB
testcase_13 AC 693 ms
241,524 KB
testcase_14 TLE -
testcase_15 AC 691 ms
243,072 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 103 ms
80,732 KB
testcase_19 AC 313 ms
223,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
#define pb push_back
int dy[]={0, 0, 1, -1, 1, 1, -1, -1};
int dx[]={1, -1, 0, 0, 1, -1, -1, 1};

#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define mp make_pair
#define fi first
#define sc second
#define INF (1e9)

int N,P;
int a[4][5000];
bool done[5001][15001];
int memo[5001][15001];

int solve(int i,int j) {
	if(done[i][j]) {
		return memo[i][j];
	}
	if(i == N - 1) {
		double ret;
		if(j < 4) {
			ret = a[j][i];
		}
		else 
			ret = INF;
		done[i][j] = true;
		return memo[i][j] = ret;
	}

	double x = INF,y = INF,z = INF,w = INF;

	x = (solve(i + 1,j) + a[0][i]);

	if(j > 0) {
		y = (solve(i + 1,j - 1) + a[1][i]);
	} 
	if(j > 1) {
		z = (solve(i + 1,j - 2) + a[2][i]);
	}
	if(j > 2) {
		w = (solve(i + 1,j - 3) + a[3][i]);
	}
	done[i][j] = true;
	return memo[i][j] = min(min(x,y),min(z,w));
}


int main(){
	scanf("%d%d",&N,&P);
	REP(i,N) {
		scanf("%d%d%d",a[0]+i,a[1]+i,a[2]+i);
		a[3][i] = 1;
	}

	
	printf("%0.10f\n",solve(0,P) / (double)N);
	return 0;
}
0