結果

問題 No.2871 Universal Serial Bus
ユーザー n0ma_run0ma_ru
提出日時 2024-09-07 00:36:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,287 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 206,152 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-07 00:36:43
合計ジャッジ時間 3,392 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
template<class F, class S>
ostream& operator<<(ostream& os, pair<F,S>& p) {
    os << '(' << p.first << ',' << p.second << ')';
    return os;
}
template<class Iter>
void print(Iter beg, Iter end) {
    for (Iter itr = beg; itr != end; ++itr) {
        cerr << *itr << ' ';
    }
    cerr << '\n';
}
int h,w;
vector<string> s,t;

int main() {
    cin >> h >> w;
    s.resize(h); t.resize(h);
    for (int i = 0; i < h; ++i) cin >> s[i];
    for (int i = 0; i < h; ++i) cin >> t[i];

    for (int i = 0; i < h; ++i) for (int j = 0; j < w; ++j) s[i][j] = (s[i][j]=='#' ? '.' : '#');

    bool f1 = (s == t);
    reverse(ALL(s));
    for (int i = 0; i < h; ++i) reverse(ALL(s[i]));
    bool f2 = (s == t);

    if (!f1 && !f2) {
        cout << -1 << '\n';
        return 0;
    }
    double base = 1;
    double ans = 0;
    for (int t = 1; t < 60; ++t) {
        double p = 1.0 / (1LL << (t-1));
        if (t % 2 == 1 && f1 || t % 2 == 0 && f2) {
            // cerr << t << " " << base * (1-p) << '\n';
            ans += t * base * (1-p);
            base *= p;
        }
    }

    cout << fixed << setprecision(20) << ans << '\n';
}
0