結果

問題 No.2222 Respawn
ユーザー stoqstoq
提出日時 2022-06-02 07:52:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,128 bytes
コンパイル時間 6,267 ms
コンパイル使用メモリ 357,360 KB
実行使用メモリ 43,688 KB
最終ジャッジ日時 2024-07-17 05:26:10
合計ジャッジ時間 37,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 10 ms
6,940 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 1,004 ms
31,168 KB
testcase_14 AC 682 ms
22,320 KB
testcase_15 AC 344 ms
12,852 KB
testcase_16 AC 624 ms
20,556 KB
testcase_17 AC 333 ms
12,452 KB
testcase_18 AC 1,444 ms
43,420 KB
testcase_19 AC 1,452 ms
43,352 KB
testcase_20 AC 1,446 ms
43,476 KB
testcase_21 AC 1,445 ms
43,532 KB
testcase_22 AC 1,445 ms
43,476 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 1,073 ms
43,508 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include <boost/multiprecision/cpp_dec_float.hpp>
namespace bsmp = boost::multiprecision;
using Q = bsmp::number<bsmp::cpp_dec_float<80>>;
//using Q = long double;

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

int main() {
  int n;
  string s;
  cin >> n >> s;
  vector<Q> E(n + 1);
  vector<linear> f(n + 1);
  f[n - 1] = {0, 0};
  f[n] = {0, 1};

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