結果

問題 No.472 平均順位
ユーザー kyawashellkyawashell
提出日時 2018-03-28 12:55:55
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
MLE  
実行時間 -
コード長 978 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 163,152 KB
実行使用メモリ 296,832 KB
最終ジャッジ日時 2024-11-30 12:14:29
合計ジャッジ時間 4,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 5 ms
6,912 KB
testcase_09 AC 14 ms
15,360 KB
testcase_10 AC 12 ms
13,440 KB
testcase_11 AC 37 ms
35,968 KB
testcase_12 AC 28 ms
28,032 KB
testcase_13 AC 94 ms
88,576 KB
testcase_14 MLE -
testcase_15 AC 93 ms
88,832 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 25 ms
25,472 KB
testcase_19 AC 53 ms
53,504 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];
int dp[5001][15001];

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;
	}

	REP(j,P+1) {
		dp[N - 1][j] = (j < 4) ? a[j][N - 1] : INF;
	}

	RREP(i,N - 1) {
		REP(j,P+1) {
			int x[4];
			REP(k,4) 
				x[k] = INF;

			REP(k,4) {
				if(j > k - 1) {
					x[k] = dp[i + 1][j - k] + a[k][i];
				}
			}
			int y = INF;
			REP(k,4) {
				if(y > x[k]) 
					y = x[k];
			}
			dp[i][j] = y;
		}
	}

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