結果

問題 No.2871 Universal Serial Bus
ユーザー pitPpitP
提出日時 2024-09-06 21:49:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 871 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-09-06 21:50:23
合計ジャッジ時間 14,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 842 ms
11,264 KB
testcase_01 AC 781 ms
11,264 KB
testcase_02 AC 820 ms
11,264 KB
testcase_03 AC 33 ms
11,264 KB
testcase_04 AC 804 ms
11,392 KB
testcase_05 AC 753 ms
11,264 KB
testcase_06 AC 799 ms
11,264 KB
testcase_07 AC 791 ms
11,392 KB
testcase_08 AC 32 ms
11,264 KB
testcase_09 AC 845 ms
11,392 KB
testcase_10 AC 33 ms
11,392 KB
testcase_11 AC 777 ms
11,264 KB
testcase_12 AC 788 ms
11,392 KB
testcase_13 AC 33 ms
11,392 KB
testcase_14 AC 871 ms
11,392 KB
testcase_15 AC 783 ms
11,392 KB
testcase_16 AC 788 ms
11,392 KB
testcase_17 AC 823 ms
11,392 KB
testcase_18 AC 774 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
H, W = map(int, input().split())
S = [list(input()) for _ in range(H)]
T = [list(input()) for _ in range(H)]

S = [[1 if S[i][j] == '#' else 0 for j in range(W)] for i in range(H)]
T = [[1 if T[i][j] == '#' else 0 for j in range(W)] for i in range(H)]

a, b = 1, 1
for i in range(H):
    for j in range(W):
        a &= (S[i][j] + T[i][j] == 1)
        b &= (S[H - 1 - i][W - 1 - j] + T[i][j] == 1)

if a == 0 and b == 0:
    exit(print(-1))

a = Decimal(a)
b = Decimal(b)
ans = Decimal(0.0)
sp = Decimal(0.0)
coef = Decimal(1.0)

for k in range(1, 202020):
    if k % 2:
        prob = (Decimal(1.0) - sp) * a * (Decimal(1.0) - coef)
    else:
        prob = (Decimal(1.0) - sp) * b * (Decimal(1.0) - coef)
    ans += prob * Decimal(k)
    sp += prob
    
    coef /= Decimal(2.0)

print(ans)
0