結果

問題 No.2291 Union Find Estimate
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-05 21:58:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,755 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-05-02 16:13:33
合計ジャッジ時間 3,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 449 ms
76,416 KB
testcase_03 AC 56 ms
66,432 KB
testcase_04 AC 94 ms
76,672 KB
testcase_05 WA -
testcase_06 AC 88 ms
76,288 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 98 ms
76,416 KB
testcase_11 AC 116 ms
76,288 KB
testcase_12 AC 171 ms
76,288 KB
testcase_13 AC 80 ms
76,800 KB
testcase_14 AC 84 ms
76,544 KB
testcase_15 AC 79 ms
77,568 KB
testcase_16 AC 87 ms
76,032 KB
testcase_17 AC 83 ms
76,160 KB
testcase_18 AC 82 ms
75,904 KB
testcase_19 AC 100 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Unionfind:
     
    def __init__(self,n):
        self.uf = [-1]*n
        self.ps = [-1]*n
    def find(self,x):
        if self.uf[x] < 0:
            return x
        else:
            self.uf[x] = self.find(self.uf[x])
            return self.uf[x]
 
    def same(self,x,y):
        return self.find(x) == self.find(y)
    
    def update(self,x,nx):

        x = self.find(x)

        ny = self.ps[x]

        if nx != ny:
            if nx != -1 and ny != -1:
                self.ps[x] = 0
            else:
                self.ps[x] = max(nx,ny)


    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        nx = self.ps[x]
        ny = self.ps[y]
        if x == y:
            return False
        if self.uf[x] > self.uf[y]:
            x,y = y,x
        self.uf[x] += self.uf[y]

        self.uf[y] = x
        if nx != ny:
            if nx != -1 and ny != -1:
                self.ps[x] = 0
            else:
                self.ps[x] = max(nx,ny)

        return True
 
    def size(self,x):
        x = self.find(x)
        return -self.uf[x]



w,h = map(int,input().split())
mod = 998244353
uf = Unionfind(w)
for i in range(h):
    q = input()
    last = [-1]*26
    for j in range(w):
        s = q[j]
        if "0" <= s <= "9":
            uf.update(j,int(s))
        elif "a" <= s <= "z":
            pos = ord(s)-ord("a")
            if last[pos] == -1:
                last[pos] = j
            else:
                uf.union(last[pos],j)

    
    ans = 1
    for j in range(w):
        if uf.find(j) == j:
            num = uf.ps[j]
            if num == -1:
                ans *= 10
            elif num == 0:
                ans = 0
                break
            ans %= mod
    print(ans)

0