結果

問題 No.2838 Diagonals
ユーザー titiatitia
提出日時 2024-08-11 02:56:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 955 ms / 2,000 ms
コード長 1,138 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-08-11 02:56:11
合計ジャッジ時間 4,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 955 ms
22,784 KB
testcase_09 AC 506 ms
22,784 KB
testcase_10 AC 313 ms
22,912 KB
testcase_11 AC 230 ms
22,784 KB
testcase_12 AC 93 ms
22,784 KB
testcase_13 AC 199 ms
17,664 KB
testcase_14 AC 55 ms
11,904 KB
testcase_15 AC 34 ms
11,136 KB
testcase_16 AC 46 ms
11,648 KB
testcase_17 AC 71 ms
12,672 KB
testcase_18 AC 139 ms
15,360 KB
testcase_19 AC 114 ms
14,464 KB
testcase_20 AC 123 ms
14,592 KB
testcase_21 AC 65 ms
12,288 KB
testcase_22 AC 68 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

N,M=map(int,input().split())
MAP=[input().strip() for i in range(N)]

# UnionFind

Group = [i for i in range(N*M+1)] # グループ分け
Nodes = [1]*(N*M+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

INV=pow(2,mod-2,mod)
ANS=1
for i in range(N):
    for j in range(M):
        if MAP[i][j]=="#":
            ANS=ANS*4%mod

            if i>0 and j>0 and MAP[i-1][j]=="#" and MAP[i][j-1]=="#":
                if find((i-1)*M+j)==find(i*M+j-1):
                    ANS=ANS*INV%mod
            if i>0 and MAP[i-1][j]=="#":
                Union(i*M+j,(i-1)*M+j)
            if j>0 and MAP[i][j-1]=="#":
                Union(i*M+j,i*M+j-1)

print(ANS)

            
0