結果

問題 No.472 平均順位
ユーザー kyawashellkyawashell
提出日時 2018-03-28 12:16:25
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 1,296 bytes
コンパイル時間 2,266 ms
コンパイル使用メモリ 159,040 KB
実行使用メモリ 361,400 KB
最終ジャッジ日時 2024-06-25 13:07:50
合計ジャッジ時間 6,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,324 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 14 ms
9,600 KB
testcase_09 AC 60 ms
23,424 KB
testcase_10 AC 49 ms
23,168 KB
testcase_11 AC 221 ms
58,624 KB
testcase_12 AC 156 ms
48,128 KB
testcase_13 AC 739 ms
187,896 KB
testcase_14 MLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:57:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   57 |         scanf("%d%d",&N,&P);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:59:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   59 |                 scanf("%d%d%d",a[0]+i,a[1]+i,a[2]+i);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

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];
double memo[5001][15001];

double 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) * (N - i - 1) + a[0][i]) / (N - i);

	if(j > 0) {
		y = (solve(i + 1,j - 1) * (N - i - 1) + a[1][i]) / (N - i);
	} 
	if(j > 1) {
		z = (solve(i + 1,j - 2) * (N - i - 1) + a[2][i]) / (N - i);
	}
	if(j > 2) {
		w = (solve(i + 1,j - 3) * (N - i - 1) + a[3][i]) / (N - 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));
	return 0;
}
0