結果
問題 | No.2291 Union Find Estimate |
ユーザー | ニックネーム |
提出日時 | 2023-05-05 21:51:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 878 bytes |
コンパイル時間 | 473 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 16,256 KB |
最終ジャッジ日時 | 2024-05-02 15:57:16 |
合計ジャッジ時間 | 3,615 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
16,256 KB |
testcase_01 | AC | 29 ms
10,752 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 | -- | - |
ソースコード
class UF: def __init__(self,n): self.p = [-1]*n def f(self,x): if self.p[x]<0: return x else: self.p[x] = self.f(self.p[x]); return self.p[x] def u(self,x,y): x = self.f(x); y = self.f(y) if x==y: return if -self.p[x]<-self.p[y]: x,y = y,x self.p[x] += self.p[y]; self.p[y] = x def s(self,x,y): return self.f(x) == self.f(y) w,h = map(int,input().split()) mod = 998244353; uf = UF(w+10); c = w for _ in range(h): s = [[] for _ in range(26)] for i,v in enumerate(input()): a = ord(v) if 48<=a<=57 and not uf.s(i,w+a-48): uf.u(i,w+a-48); c -= 1 if 97<=a<=122: s[a-97].append(i) for t in s: for u,v in zip(t[:-1],t[1:]): if not uf.s(u,v): uf.u(u,v); c -= 1 if len(set(uf.f(w+i) for i in range(10)))<10: c = -1 print(pow(10,c,mod) if c>=0 else 0)