結果

問題 No.2871 Universal Serial Bus
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-08 11:32:25
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,667 bytes
コンパイル時間 3,119 ms
コンパイル使用メモリ 253,096 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-08 11:32:30
合計ジャッジ時間 4,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

using ld = long double;

int main() {
    int h, w;
    cin >> h >> w;
    vector<vector<char>> s(h, vector<char>(w)), t(h, vector<char>(w));
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            cin >> s[i][j];
        }
    }
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            cin >> t[i][j];
        }
    }
    bool odd = true, even = true;
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            if (s[i][j] == t[i][j]) {
                odd = false;
            }
            if (s[h - 1 - i][w - 1 - j] == t[i][j]) {
                even = false;
            }
        }
    }
    ld ans = 1.0;
    vector<ld> p(25), mul(25);
    p[1] = mul[1] = 1.0;
    if (odd && even) {
        for (int i = 2; i < 25; i++) {
            ans += mul[i - 1];
            p[i] = p[i - 1] / 2.0;
            mul[i] = mul[i - 1] * p[i];
        }
    } else if (odd && !even) {
        for (int i = 2; i < 25; i++) {
            ans += mul[i - 1];
            p[i] = (i % 2 == 0 ? 1.0 : p[i - 2] / 4.0);
            mul[i] = mul[i - 1] * p[i];
        }
    } else if (!odd && even) {
        for (int i = 2; i < 25; i++) {
            if (i == 2) {
                ans += 1.0;
                p[2] = 0.5;
                mul[2] = 0.5;
            } else {
                ans += mul[i - 1];
                p[i] = (i % 2 == 0 ? p[i - 2] / 4.0 : 1.0);
                mul[i] = mul[i - 1] * p[i];
            }
        }
    } else {
        cout << -1 << endl;
        return 0;
    }
    cout << fixed << setprecision(10) << ans << endl;
}
0