結果
問題 | No.2291 Union Find Estimate |
ユーザー | t98slider |
提出日時 | 2023-03-16 02:53:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,466 bytes |
コンパイル時間 | 124 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 18,080 KB |
最終ジャッジ日時 | 2024-09-18 09:07:56 |
合計ジャッジ時間 | 3,562 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
17,700 KB |
testcase_01 | AC | 26 ms
10,880 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
from sys import stdin class UnionFind(): def __init__(self, n): self.siz = n - 10 self.parent_or_size = [-1] * n def leader(self, x): if self.parent_or_size[x] < 0: return x self.parent_or_size[x] = self.leader(self.parent_or_size[x]) return self.parent_or_size[x] def same(self, x, y): return self.leader(x) == self.leader(y) def merge(self, x, y): rx, ry = self.leader(x), self.leader(y) if rx == ry: return if self.parent_or_size[rx] > self.parent_or_size[ry]: rx, ry = ry, rx self.parent_or_size[rx] += self.parent_or_size[ry] self.parent_or_size[ry] = rx self.siz -= 1 return W, H = map(int, input().split()) uf = UnionFind(W + 10) is_zero = 0 pow10 = [0] * (W + 1) pow10[0] = 1 for i in range(W): pow10[i + 1] = pow10[i] * 10 pow10[i + 1] %= 998244353 for _ in range(H): s = stdin.readline() if is_zero == 1: print(0) continue pos = [-1] * 26 for i in range(W): if s[i] == '?': continue if '0' <= s[i] and s[i] <= '9': uf.merge(ord(s[i]) - ord('0') + W, i) continue c = ord(s[i]) - ord('a') if pos[c] != -1: uf.merge(i, pos[c]) pos[c] = i for i in range(10): for j in range(i + 1, 10): if uf.same(i + W, j + W): is_zero = 1 if is_zero: print(0) else: print(pow10[uf.siz])