結果

問題 No.2222 Respawn
ユーザー rabimearabimea
提出日時 2023-02-17 23:22:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,024 ms / 2,000 ms
コード長 1,250 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 203,388 KB
実行使用メモリ 472,836 KB
最終ジャッジ日時 2024-07-19 14:36:00
合計ジャッジ時間 15,847 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
7,924 KB
testcase_02 AC 5 ms
18,076 KB
testcase_03 AC 5 ms
24,396 KB
testcase_04 AC 7 ms
30,316 KB
testcase_05 AC 3 ms
9,976 KB
testcase_06 AC 2 ms
6,948 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 16 ms
47,816 KB
testcase_09 AC 15 ms
47,440 KB
testcase_10 AC 15 ms
47,688 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 6 ms
6,912 KB
testcase_13 AC 491 ms
330,724 KB
testcase_14 AC 331 ms
225,920 KB
testcase_15 AC 181 ms
116,224 KB
testcase_16 AC 297 ms
205,056 KB
testcase_17 AC 161 ms
111,104 KB
testcase_18 AC 724 ms
472,716 KB
testcase_19 AC 1,024 ms
472,676 KB
testcase_20 AC 703 ms
472,592 KB
testcase_21 AC 670 ms
472,460 KB
testcase_22 AC 676 ms
472,832 KB
testcase_23 AC 757 ms
472,596 KB
testcase_24 AC 777 ms
472,576 KB
testcase_25 AC 751 ms
472,708 KB
testcase_26 AC 761 ms
472,708 KB
testcase_27 AC 780 ms
472,460 KB
testcase_28 AC 779 ms
472,728 KB
testcase_29 AC 810 ms
472,612 KB
testcase_30 AC 830 ms
472,836 KB
testcase_31 AC 646 ms
472,608 KB
testcase_32 AC 802 ms
472,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
 
#define fi first
#define se second
#define pb push_back
using vi = vector <int>;
using ll = long long;
using vl = vector <ll>;
using pii = pair <int, int>;
const ll mod = 998244353;
//~ const ll mod = 1e9 + 7;
ll qpow(ll a, ll b, ll m = mod) { ll r = 1, t = a;
	for(; b; b /= 2) { if(b & 1) r = r * t % m; t = t * t % m; } return r; }

const int N = 2e5 + 11;
const int M = 100;

int n;
string s;

double a[M + 2][N], b[M + 2][N], f[M + 2][N];

int main() {
	ios::sync_with_stdio(0);
	int n; cin >> n;
	
	cin >> s;
	s = '#' + s + "##";
	
	for(int j = n - 1; j >= 1; j --) {
		for(int i = min(n - 1, j + M - 1); i >= j; i --) {
			for(int t : {1, 2})
				if(s[i + t] == '#') {
					a[i - j][j] += 1.0 / 3; 
				} else {
					a[i - j][j] += a[i - j + t][j] / 3;
					b[i - j][j] += b[i - j + t][j] / 3;
				}
			
			if(i != j)
				b[i - j][j] += f[0][i] / 3;
			else
				a[i - j][j] += 1.0 / 3;
			b[i - j][j] += 1;
			//~ cout << i << ' ' << j << ' ' << a[i - j][j] << ' ' << b[i - j][j] << '\n';
		}
		
		f[0][j] = b[0][j] / (1 - a[0][j]);
		for(int i = min(n, j + M - 1); i > j; i --)
			f[i - j][j] = a[i - j][j] * f[0][j] + b[i - j][j];
	}
	
	cout << fixed << setprecision(8) << f[0][1] << '\n';
}

0