結果

問題 No.2291 Union Find Estimate
ユーザー FromBooskaFromBooska
提出日時 2023-05-06 10:25:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 691 ms / 2,000 ms
コード長 2,668 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,440 KB
最終ジャッジ日時 2024-05-03 00:06:41
合計ジャッジ時間 4,312 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,656 KB
testcase_01 AC 39 ms
54,528 KB
testcase_02 AC 691 ms
77,924 KB
testcase_03 AC 86 ms
92,856 KB
testcase_04 AC 144 ms
77,848 KB
testcase_05 AC 150 ms
77,824 KB
testcase_06 AC 131 ms
77,440 KB
testcase_07 AC 92 ms
76,936 KB
testcase_08 AC 142 ms
77,292 KB
testcase_09 AC 133 ms
77,440 KB
testcase_10 AC 198 ms
78,080 KB
testcase_11 AC 216 ms
78,208 KB
testcase_12 AC 282 ms
78,260 KB
testcase_13 AC 126 ms
100,440 KB
testcase_14 AC 126 ms
78,068 KB
testcase_15 AC 104 ms
85,444 KB
testcase_16 AC 111 ms
77,432 KB
testcase_17 AC 116 ms
79,488 KB
testcase_18 AC 112 ms
78,848 KB
testcase_19 AC 167 ms
77,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# コメント間違い
# 公式解説より
# 各桁と10個の数字をグラフ化、頂点はW+10個


class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n
 
    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]
 
    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        self.parents[x] += self.parents[y]
        self.parents[y] = x
 
    def size(self, x):
        return -self.parents[self.find(x)]
 
    def same(self, x, y):
        return self.find(x) == self.find(y)
 
    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]
 
    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]
 
    def group_count(self):
        return len(self.roots())
 
    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members
 
    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

# 各桁、そして、10個の数字をグラフ化

W, H = map(int, input().split())
mod = 998244353

UF = UnionFind(W+10)
# 0-W-1までが各桁、Wが数字0、W+1が数字1、W+9が数字9を示す

numnode = {}
for n in range(10):
    numnode[str(n)] = W+n
    
numset = set()
for n in range(10):
    numset.add(str(n))    

from collections import defaultdict

for i in range(H):
    q = input()
    dic = defaultdict(list)
    for j in range(W):
        dic[q[j]].append(j)
    #print(dic)
    for d in dic:
        if d == '?':
            continue
        if d in numset:
            for k in range(len(dic[d])):
                UF.unite(numnode[d], dic[d][k])
        else:
            if len(dic[d]) > 1:
                for k in range(1, len(dic[d])):
                    UF.unite(dic[d][0], dic[d][k])
    #print(UF.all_group_members())
    ans = 1
    for members in UF.all_group_members().values():
        if len(members) == 1 and members[0] in numset:
            continue
        
        num_count = 0
        for m in members:
            if m >= W:
                num_count += 1
        if num_count == 0:
            ans *= 10
            ans %= mod
        elif num_count == 1:
            pass
        elif num_count >= 2:
            ans *= 0
    print(ans)
    
    




0