結果
問題 | No.2291 Union Find Estimate |
ユーザー | ikoma |
提出日時 | 2023-05-05 23:20:27 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 122 ms / 2,000 ms |
コード長 | 1,612 bytes |
コンパイル時間 | 319 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 76,672 KB |
最終ジャッジ日時 | 2024-11-23 12:16:56 |
合計ジャッジ時間 | 3,118 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,224 KB |
testcase_01 | AC | 41 ms
52,224 KB |
testcase_02 | AC | 122 ms
76,288 KB |
testcase_03 | AC | 68 ms
66,304 KB |
testcase_04 | AC | 90 ms
76,288 KB |
testcase_05 | AC | 90 ms
76,156 KB |
testcase_06 | AC | 86 ms
76,160 KB |
testcase_07 | AC | 72 ms
72,832 KB |
testcase_08 | AC | 74 ms
76,288 KB |
testcase_09 | AC | 77 ms
76,032 KB |
testcase_10 | AC | 83 ms
76,072 KB |
testcase_11 | AC | 84 ms
76,144 KB |
testcase_12 | AC | 96 ms
76,456 KB |
testcase_13 | AC | 72 ms
76,032 KB |
testcase_14 | AC | 85 ms
76,288 KB |
testcase_15 | AC | 90 ms
76,672 KB |
testcase_16 | AC | 95 ms
76,124 KB |
testcase_17 | AC | 80 ms
75,520 KB |
testcase_18 | AC | 87 ms
75,924 KB |
testcase_19 | AC | 77 ms
76,080 KB |
ソースコード
import sys input = sys.stdin.readline MOD=998244353 W,H=map(int,input().split()) class UnionFind: def __init__(self, n:int): self.n = n self.parents = [-1] * n def find(self, x:int): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x:int, y:int): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x if y<10: x,y=y,x self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x:int): return -self.parents[self.find(x)] def same(self, x:int, y:int): return self.find(x) == self.find(y) uf = UnionFind(10+W) ans = pow(10, W, MOD) div10 = pow(10, MOD-2, MOD) for _ in range(H): Q=input().strip() check = {} for i,s in enumerate(Q,start=10): if s=="?":continue if "a"<=s<="z": if s in check: if uf.same(check[s], i): continue ca=uf.find(check[s]) ci=uf.find(i) if ca<10 and ci<10: ans=0 uf.union(check[s], i) ans = ans * div10 % MOD else: check[s] = i else: root = uf.find(i) s = int(s) if root < 10 and root != s: ans=0 if root != s: uf.union(s, i) ans = ans * div10 % MOD print(ans)