結果

問題 No.463 魔法使いのすごろく🎲
ユーザー YamyukiYamyuki
提出日時 2016-12-15 10:07:49
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 983 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 24,576 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 14:43:29
合計ジャッジ時間 1,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 0 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 0 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 0 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 0 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 0 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 1 ms
5,376 KB
testcase_23 WA -
testcase_24 AC 1 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 0 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 0 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%d %d",&n,&m);
      |         ^~~~~~~~~~~~~~~~~~~~
main.c:11:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |                 scanf("%ld",&c[i]);
      |                 ^~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

int main(){
	int n,m,i,j,k;
	long c[100];
	double e[100][101],ans[100],t;
	scanf("%d %d",&n,&m);
	c[0]=0;
	c[n-1]=0;
	for(i=1;i<n-1;i++){
		scanf("%ld",&c[i]);
	}
	c[0]=0;
	c[n-1]=0;
	for(i=0;i<n;i++){
		for(j=0;j<n;j++){
			e[i][j]=0.0;
		}
		e[i][i]=-1.0;
		e[i][100]=-1*(double)c[i];
		for(j=1;j<=m;j++){
			e[i][(i+j>=n)?2*n-i-j-2:i+j]+=1.0/m;
		}
	}
	for(i=0;i<n;i++){
		for(j=i+1;j<n;j++){
			e[j][i]=0;
			t=e[j][i]/e[i][i];
			for(k=i+1;k<n;k++){
				e[j][k]-=e[i][k]*t;
			}
			e[j][100]-=e[i][100]*t;
		}
	}
	for(i=n-1;i>=0;i--){
		t=1.0/e[i][i];
		for(j=i;j<n;j++){
			e[i][j]*=t;
		}
		e[i][100]*=t;
		for(j=i+1;j<n;j++){
			e[i][100]-=e[j][100]*e[i][j];
		}
	}
	for(i=n-1;i>=0;i--){
		//ans
		ans[i]=e[i][100];
		for(j=i+1;j<=i+m && j<n;j++){
			ans[i]=(ans[i]>e[j][100])?e[j][100]:ans[i];
		}
		if(i+m<n-1){
			t=0;
		for(j=1;j<=m;j++){
			t+=ans[i+j]+c[i+j];
		}
		t/=m;
		ans[i]=(t<ans[i])?t:ans[i];
		}
	}
	printf("%.12f\n",ans[0]);
	return 0;
}

0