結果

問題 No.2838 Diagonals
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-07 12:43:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 80,136 KB
最終ジャッジ日時 2024-11-07 12:43:24
合計ジャッジ時間 4,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 46 ms
57,984 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 47 ms
54,528 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 237 ms
78,848 KB
testcase_09 AC 230 ms
80,136 KB
testcase_10 AC 149 ms
78,984 KB
testcase_11 AC 173 ms
79,776 KB
testcase_12 AC 98 ms
78,720 KB
testcase_13 AC 175 ms
79,556 KB
testcase_14 AC 132 ms
77,576 KB
testcase_15 AC 111 ms
76,620 KB
testcase_16 AC 136 ms
77,780 KB
testcase_17 AC 143 ms
78,244 KB
testcase_18 AC 160 ms
78,684 KB
testcase_19 AC 152 ms
78,692 KB
testcase_20 AC 167 ms
78,700 KB
testcase_21 AC 149 ms
78,300 KB
testcase_22 AC 143 ms
77,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def root(x):
  p=x
  l=[p]
  while r[p]!=p:
    p=r[p]
    l+=[p]
  for p in l:
    r[p]=l[-1]
  return r[x]

def union(x,y):
  rx=root(x)
  ry=root(y)
  if rx==ry:
    return
  if rx>ry:
    rx,ry=ry,rx
  r[ry]=rx
  return

h,w=map(int,input().split())
s=[input() for i in range(h)]
r=list(range(h*w))
M=998244353
c=1
for i in range(h):
  for j in range(w):
    if s[i][j]=="#":
      c*=2 if i-1>=0 and j-1>=0 and root((i-1)*w+j)==root(i*w+(j-1)) else 4
      c%=M
      if i-1>=0 and s[i-1][j]=="#":
        union(i*w+j,(i-1)*w+j)
      if j-1>=0 and s[i][j-1]=="#":
        union(i*w+j,i*w+(j-1))
print(c)
0