結果

問題 No.2871 Universal Serial Bus
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-09-07 00:44:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 559 ms / 2,000 ms
コード長 977 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 205,968 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-07 00:44:10
合計ジャッジ時間 9,046 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	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];
	}
	vector<string> s_rot(h, string(w, '.'));
	for (int i = 0; i < h; i++) {
		for (int j = 0; j < w; j++) {
			s_rot[h - 1 - i][w - 1 - j] = s[i][j];
		}
	}
	bool ok[2] = {true, true};
	for (int i = 0; i < h; i++) {
		for (int j = 0; j < w; j++) {
			if (s[i][j] == t[i][j]) {
				ok[0] = false;
			}
			if (s_rot[i][j] == t[i][j]) {
				ok[1] = false;
			}
		}
	}
	if (!ok[0] && !ok[1]) {
		cout << -1 << endl;
		return 0;
	}
	long double ans = 0;
	long double prob = 1.0;
	int M = 1e6;
	for (int i = 0; i < M; i++) {
		if (ok[i % 2]) {
			long double p = powl(2, -i);
			ans += (i + 1) * prob * (1.0 - p);
			prob *= p;
		}
	}
	cout << fixed << setprecision(16) << ans << endl;
}
0