結果

問題 No.2871 Universal Serial Bus
ユーザー テナガザルテナガザル
提出日時 2024-09-06 21:39:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 1,098 ms
コンパイル使用メモリ 97,232 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-06 21:40:18
合計ジャッジ時間 1,778 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,948 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
  int h, w;
  cin >> h >> w;
  vector<string> s(h), t(h);
  for (int i = 0; i < h; ++i) cin >> s[i];
  for (int i = 0; i < h; ++i) cin >> t[i];
  int flag[2] = {1, 1};
  for (int _t = 0; _t < 2; ++_t)
  {
    reverse(s.begin(), s.end());
    int tmp = 1;
    for (int i = 0; i < h; ++i)
    {
      for (int j = 0; j < w; ++j)
      {
        if (s[i][j] == t[i][j])
        {
          tmp = 0;
          i = h, j = w;
        }
      }
    }
    flag[_t] = tmp;
  }
  if (flag[0] == 0 && flag[1] == 0)
  {
    cout << -1 << endl;
    return 0;
  }
  double ans = 0, v = 1, now = 1;
  for (int i = 1; i < 10000; ++i)
  {
    if (flag[i % 2])
    {
      ans += now * i * (1 - v);
      now *= v;
    }
    v /= 2.0;
  }
  printf("%.10f\n", ans);
}
0