結果
問題 | No.2494 Sum within Components |
ユーザー | hirayuu_yc |
提出日時 | 2023-10-06 21:30:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 406 ms / 2,000 ms |
コード長 | 1,078 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 82,488 KB |
実行使用メモリ | 119,840 KB |
最終ジャッジ日時 | 2024-07-26 15:46:19 |
合計ジャッジ時間 | 3,561 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,872 KB |
testcase_01 | AC | 35 ms
52,804 KB |
testcase_02 | AC | 33 ms
53,644 KB |
testcase_03 | AC | 33 ms
53,760 KB |
testcase_04 | AC | 33 ms
53,232 KB |
testcase_05 | AC | 35 ms
53,488 KB |
testcase_06 | AC | 35 ms
53,700 KB |
testcase_07 | AC | 41 ms
53,140 KB |
testcase_08 | AC | 34 ms
53,012 KB |
testcase_09 | AC | 98 ms
78,040 KB |
testcase_10 | AC | 128 ms
81,268 KB |
testcase_11 | AC | 80 ms
77,740 KB |
testcase_12 | AC | 140 ms
80,648 KB |
testcase_13 | AC | 122 ms
79,676 KB |
testcase_14 | AC | 364 ms
102,352 KB |
testcase_15 | AC | 343 ms
97,996 KB |
testcase_16 | AC | 178 ms
100,368 KB |
testcase_17 | AC | 97 ms
102,040 KB |
testcase_18 | AC | 172 ms
119,756 KB |
testcase_19 | AC | 406 ms
119,840 KB |
ソースコード
class UnionFind(): def __init__(self,size): self.uf=[[-1,0,A[i]] for i in range(size)] def unite(self,fir,sec): one=self.root(fir) two=self.root(sec) if one!=two: if self.uf[one][1]>self.uf[two][1]: one,two=two,one self.uf[one][0]=two self.uf[two][2]+=self.uf[one][2] if self.uf[one][1]==self.uf[two][1]: self.uf[two][1]+=1 def same(self,fir,sec): return self.root(fir)==self.root(sec) def root(self,node): pos=node change=[] while self.uf[pos][0]!=-1: change.append(pos) pos=self.uf[pos][0] for i in change: self.uf[i][0]=pos return pos def size(self,node): return self.uf[self.root(node)][2] N,M=map(int,input().split()) A=list(map(int,input().split())) union=UnionFind(N) for i in range(M): A,B=map(int,input().split()) union.unite(A-1,B-1) ans=1 for i in range(N): ans*=union.size(i) ans%=998244353 print(ans)