結果

問題 No.2871 Universal Serial Bus
ユーザー hongrockhongrock
提出日時 2024-09-06 21:40:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 207,520 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 21:40:41
合計ジャッジ時間 2,885 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

#define pb emplace_back
#define mp make_pair
 
using ll = long long;
using pii = pair<int,int>;
 
constexpr int mod = 998244353;
constexpr int inf = 0x3f3f3f3f;
constexpr int N = 2e5 + 10;
int n, m;

int check(vector<string> &s, vector<string> &t){
  for(int i=0; i<n; ++i){
    for(int j=0; j<m; ++j){
      if(s[i][j] == t[i][j])  return 0;
    }
  }
  return 1;
}

void _main(){
  cin >> n >> m;
  vector<string> s(n), t(n);
  for(int i=0; i<n; ++i){
    cin >> s[i];
  }
  for(int i=0; i<n; ++i){
    cin >> t[i];
  }
  vector<int> f(2);
  f[0] = check(s, t);
  reverse(s.begin(), s.end());
  for(auto &ss : s){
    reverse(ss.begin(), ss.end());
  }
  f[1] = check(s, t);
  if(!f[0] && !f[1]){
    cout << "-1\n";
    return;
  }
  double ans = 0.0;
  double p = 1.0;
  double q = 1.0;
  for(int i=0; i<1000000; ++i){
    if(f[i & 1]){
      ans = ans + q * (1.0 - p) * (i + 1);
      q = q * p;
    }
    p = p * 0.5;
  }
  cout << setprecision(8) << ans << '\n';
}

int main(){
  ios::sync_with_stdio(0);
  cin.tie(0); cout.tie(0);
  _main();
  return 0;
}
0