結果

問題 No.1688 Veterinarian
ユーザー publflpublfl
提出日時 2021-09-24 21:51:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 3,000 ms
コード長 835 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 33,152 KB
実行使用メモリ 63,104 KB
最終ジャッジ日時 2024-07-05 10:26:26
合計ジャッジ時間 910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 4 ms
6,528 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 83 ms
63,104 KB
testcase_09 AC 75 ms
59,904 KB
testcase_10 AC 17 ms
17,536 KB
testcase_11 AC 7 ms
9,088 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 6 ms
8,576 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 22 ms
17,536 KB
testcase_16 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int check[51][51][51][51][4];
double check2[51][51][51][51][4];
double func(int k, int a, int b, int c, int mode)
{
	if(a<=0) return 0;
	if(b<=0) return 0;
	if(c<=0) return 0;
	if(k==0) return 0;
	if(check[k][a][b][c][mode]) return check2[k][a][b][c][mode];
	
	int s1 = a*(a-1)/2;
	int s2 = b*(b-1)/2;
	int s3 = c*(c-1)/2;
	int t = (a+b+c)*(a+b+c-1)/2;
	
	double val1 = func(k-1,a-1,b,c,mode)*s1/t + func(k-1,a,b-1,c,mode)*s2/t + func(k-1,a,b,c-1,mode)*s3/t;
	double val2 = func(k-1,a,b,c,mode)*(t-s1-s2-s3)/t;
	if(mode==1) val1 += (double)s1/t;
	if(mode==2) val1 += (double)s2/t;
	if(mode==3) val1 += (double)s3/t;
	check[k][a][b][c][mode] = 1;
	return check2[k][a][b][c][mode] = val1+val2;
}

int main()
{
	int a,b,c,d;
	scanf("%d%d%d%d",&a,&b,&c,&d);
	
	for(int i=1;i<=3;i++) printf("%.12lf ",func(d,a,b,c,i));
}
0