結果

問題 No.2222 Respawn
ユーザー no wayno way
提出日時 2023-02-18 16:01:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 829 bytes
コンパイル時間 1,565 ms
コンパイル使用メモリ 166,584 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-07-20 02:00:02
合計ジャッジ時間 3,252 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 9 ms
10,240 KB
testcase_14 AC 8 ms
8,192 KB
testcase_15 AC 5 ms
6,016 KB
testcase_16 AC 7 ms
7,680 KB
testcase_17 AC 5 ms
5,888 KB
testcase_18 AC 13 ms
13,312 KB
testcase_19 AC 13 ms
13,184 KB
testcase_20 AC 12 ms
13,112 KB
testcase_21 AC 13 ms
13,184 KB
testcase_22 AC 11 ms
13,280 KB
testcase_23 AC 14 ms
13,184 KB
testcase_24 AC 11 ms
13,276 KB
testcase_25 AC 14 ms
13,312 KB
testcase_26 AC 13 ms
13,304 KB
testcase_27 AC 13 ms
13,200 KB
testcase_28 AC 18 ms
13,184 KB
testcase_29 AC 16 ms
13,276 KB
testcase_30 AC 19 ms
13,184 KB
testcase_31 AC 14 ms
13,184 KB
testcase_32 AC 62 ms
13,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=2e5+10;
double f[N][2],g[N][2],h[N][2];
char s[N];
int n;
int main(){
	scanf("%d",&n);
	scanf("%s",s);
	g[n-1][1]=1; f[n-1][1]=1;
	for (int i=n-2;i>=0;i--)if (s[i]=='.'){
		if (i+1>n-1||s[i+1]=='#'){
			h[i][0]+=1.0/3;
			h[i][1]+=1.0/3;
		}else{
			h[i][0]+=h[i+1][0]/3+h[i+1][1]/3;
			h[i][1]+=h[i+1][1]/3;
		}
		if (i+2>n-1||s[i+2]=='#'){
			h[i][0]+=1.0/3;
			h[i][1]+=1.0/3;			
		}else{
			h[i][0]+=h[i+2][0]/3+h[i+2][1]/3;
			h[i][1]+=h[i+2][1]/3;
		}
		double p=h[i][1]+1.0/3;
		double e=1.0/(1.0-p)*(h[i][0]+1.0/3)/(1.0-p);
		p=1.0/(1.0-p);
		double p1,e1;
		e1=(g[i+1][1]+g[i+1][0]+g[i+2][0]+g[i+2][1])/3;
		p1=(g[i+1][1]+g[i+2][1])/3;
		f[i][1]=p1*p;
		f[i][0]=p*e1+p1*e;
		g[i][1]=f[i][1]/3+p1;
		g[i][0]=f[i][0]/3+f[i][1]/3+e1;
	}
	printf("%.8lf\n",f[0][0]);
}
0