結果

問題 No.2871 Universal Serial Bus
ユーザー a01sa01toa01sa01to
提出日時 2024-12-28 00:40:19
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,876 bytes
コンパイル時間 3,549 ms
コンパイル使用メモリ 254,236 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-28 00:40:24
合計ジャッジ時間 4,674 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  int h, w;
  cin >> h >> w;
  vector Grid1(h, vector<char>(w)), Grid2(h, vector<char>(w));
  rep(i, h) rep(j, w) cin >> Grid1[i][j];
  rep(i, h) rep(j, w) cin >> Grid2[i][j];
  rep(i, h) rep(j, w) Grid2[i][j] = Grid2[i][j] ^ '.' ^ '#';
  bool rotateOk = true;
  rep(i, h) rep(j, w) if (Grid1[i][j] != Grid2[h - i - 1][w - j - 1]) rotateOk = false;

  // f(x) = x 回目に成功する確率
  function<double(int)> f;
  if (rotateOk) {
    if (Grid1 == Grid2) {
      f = [&](int x) -> double {
        double res = 1;
        rep(i, x - 1) res *= pow(2, -i);
        res *= 1 - pow(2, -(x - 1));
        return res;
      };
    }
    else {
      f = [&](int x) -> double {
        double res = 1;
        // 奇数回目はミス
        rep(i, x - 1) {
          if (i % 2 == 0)
            res *= 1;
          else
            res *= pow(2, -i);
        }
        if (x % 2 == 0)
          res *= 1 - pow(2, -(x - 1));
        else
          res *= 0;
        return res;
      };
    }
  }
  else {
    if (Grid1 == Grid2) {
      f = [&](int x) -> double {
        double res = 1;
        // 偶数回目はミス
        rep(i, x - 1) {
          if (i % 2 == 1)
            res *= 1;
          else
            res *= pow(2, -i);
        }
        if (x % 2 == 1)
          res *= 1 - pow(2, -(x - 1));
        else
          res *= 0;
        return res;
      };
    }
    else {
      // 全ミス
      cout << -1 << endl;
      return 0;
    }
  }
  double ans = 0;
  for (int x = 1; x <= 100; ++x) {
    Debug(x, f(x));
    ans += x * f(x);
  }
  cout << fixed << setprecision(15) << ans << endl;
  return 0;
}
0