結果
問題 | No.2871 Universal Serial Bus |
ユーザー | 沙耶花 |
提出日時 | 2024-09-06 21:28:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 918 bytes |
コンパイル時間 | 4,528 ms |
コンパイル使用メモリ | 266,664 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-06 21:28:42 |
合計ジャッジ時間 | 5,296 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
6,816 KB |
testcase_01 | AC | 12 ms
6,940 KB |
testcase_02 | AC | 12 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 11 ms
6,940 KB |
testcase_05 | AC | 12 ms
6,940 KB |
testcase_06 | AC | 12 ms
6,940 KB |
testcase_07 | AC | 11 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 12 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 12 ms
6,940 KB |
testcase_12 | AC | 11 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 13 ms
6,944 KB |
testcase_15 | AC | 12 ms
6,940 KB |
testcase_16 | AC | 11 ms
6,940 KB |
testcase_17 | AC | 13 ms
6,940 KB |
testcase_18 | AC | 12 ms
6,940 KB |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint998244353; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 1000000000000000001 bool check(vector<string> x,vector<string> y){ rep(i,x.size()){ rep(j,x[i].size()){ if(x[i][j]==y[i][j])return false; } } return true; } int main(){ int h,w; cin>>h>>w; vector<string> s(h),t(h); rep(i,h)cin>>s[i]; rep(i,h)cin>>t[i]; bool f0 = check(s,t); rep(i,h){ reverse(t[i].begin(),t[i].end()); } reverse(t.begin(),t.end()); bool f1 = check(s,t); if(!f0&&!f1){ cout<<-1<<endl; return 0; } double ans = 0,cp = 1; double inv2 = 1.0; rep(i,5000000){ double p = 0; if(i%2==0&&f0)p = 1-inv2; if(i%2==1&&f1)p = 1-inv2; ans += cp*p*(i+1); cp *= 1-p; inv2 /= 2.0; } cout<<fixed<<setprecision(10)<<ans<<endl; return 0; }