結果
問題 | No.2291 Union Find Estimate |
ユーザー | とりゐ |
提出日時 | 2023-05-05 21:43:52 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 258 ms / 2,000 ms |
コード長 | 1,710 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 90,880 KB |
最終ジャッジ日時 | 2024-05-02 15:42:27 |
合計ジャッジ時間 | 3,207 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
54,528 KB |
testcase_01 | AC | 47 ms
54,400 KB |
testcase_02 | AC | 258 ms
79,616 KB |
testcase_03 | AC | 91 ms
90,880 KB |
testcase_04 | AC | 58 ms
61,440 KB |
testcase_05 | AC | 54 ms
56,960 KB |
testcase_06 | AC | 52 ms
55,936 KB |
testcase_07 | AC | 53 ms
60,672 KB |
testcase_08 | AC | 81 ms
73,984 KB |
testcase_09 | AC | 91 ms
76,416 KB |
testcase_10 | AC | 143 ms
77,568 KB |
testcase_11 | AC | 164 ms
77,824 KB |
testcase_12 | AC | 184 ms
77,824 KB |
testcase_13 | AC | 102 ms
82,304 KB |
testcase_14 | AC | 114 ms
76,800 KB |
testcase_15 | AC | 111 ms
79,616 KB |
testcase_16 | AC | 117 ms
77,120 KB |
testcase_17 | AC | 106 ms
77,312 KB |
testcase_18 | AC | 103 ms
76,928 KB |
testcase_19 | AC | 133 ms
77,468 KB |
ソースコード
from sys import stdin input=lambda :stdin.readline()[:-1] from collections import defaultdict class UnionFind(): def __init__(self,n): self.n=n self.parents=[-1]*n self.grp_cnt=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 union(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 self.grp_cnt-=1 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 mod=998244353 w,h=map(int,input().split()) uf=UnionFind(w+10) flag=False from collections import defaultdict for _ in range(h): s=input() if flag: print(0) continue d=defaultdict(list) for i in range(w): d[s[i]].append(i) for j in d: if '0'<=j<='9': for i in d[j]: uf.union(i,w+int(j)) else: if j=='?': continue for i in d[j]: uf.union(d[j][0],i) for i in range(10): for j in range(i+1,10): if uf.same(w+i,w+j): flag=True if flag: print(0) else: c=uf.grp_cnt-10 print(pow(10,c,mod))