結果

問題 No.2222 Respawn
ユーザー stoqstoq
提出日時 2022-06-02 07:56:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 839 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 206,860 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-07-17 05:25:12
合計ジャッジ時間 3,361 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 11 ms
8,544 KB
testcase_19 AC 12 ms
8,508 KB
testcase_20 AC 11 ms
8,448 KB
testcase_21 AC 12 ms
8,344 KB
testcase_22 AC 13 ms
8,448 KB
testcase_23 AC 12 ms
8,448 KB
testcase_24 AC 12 ms
8,412 KB
testcase_25 AC 12 ms
8,320 KB
testcase_26 AC 13 ms
8,560 KB
testcase_27 AC 13 ms
8,512 KB
testcase_28 AC 14 ms
8,448 KB
testcase_29 AC 14 ms
8,576 KB
testcase_30 AC 14 ms
8,412 KB
testcase_31 AC 11 ms
8,412 KB
testcase_32 AC 25 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

// f(x) = a + bx
using linear = pair<double, double>;
linear operator+(linear f, linear g) { return {f.first + g.first, f.second + g.second}; }
linear operator+(linear f, double a) { return {f.first + a, f.second}; }
linear operator/(linear f, double a) { return {f.first / a, f.second / a}; }
double solve(linear f) { return -f.first / f.second; } // f(x) = 0

int main() {
  int n;
  string s;
  cin >> n >> s;
  vector<double> E(n + 1);
  vector<linear> g(n + 1);
  g[n - 1] = {0, 0};
  g[n] = {0, 1};
  for (int i = n - 2; i >= 0; i--) {
    if (s[i] == '#') {
      g[i] = {0, 1};
      continue;
    }
    E[i] = solve(g[i + 1] + g[i + 2] + linear{0, -2} + 3);
    g[i] = (g[i + 1] + g[i + 2] + E[i]) / 3 + 1;
  }
  cout << setprecision(20) << setiosflags(ios::fixed) << E[0] << "\n";
}
0