結果

問題 No.2494 Sum within Components
ユーザー detteiuudetteiuu
提出日時 2024-12-07 17:50:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 1,500 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 108,084 KB
最終ジャッジ日時 2024-12-07 17:50:55
合計ジャッジ時間 5,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 116 ms
78,848 KB
testcase_10 AC 147 ms
78,720 KB
testcase_11 AC 79 ms
76,892 KB
testcase_12 AC 143 ms
80,256 KB
testcase_13 AC 129 ms
78,464 KB
testcase_14 AC 313 ms
98,432 KB
testcase_15 AC 321 ms
100,844 KB
testcase_16 AC 173 ms
95,072 KB
testcase_17 AC 98 ms
102,392 KB
testcase_18 AC 140 ms
103,740 KB
testcase_19 AC 339 ms
108,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def op(x, y):
    return x+y
class UnionFind:
    def __init__(self, n, A, op):
        self.n = n
        self.parent_size = [-1]*n
        self.A = A[:]
        self.op = op
 
    def leader(self, a):
        if self.parent_size[a] < 0:
            return a
        self.parent_size[a] = self.leader(self.parent_size[a])
        return self.parent_size[a]
 
    def merge(self, a, b):
        x, y = self.leader(a), self.leader(b)
        if x == y:
            return 
        l, r = self.A[x], self.A[y]
        if abs(self.parent_size[x]) < abs(self.parent_size[y]):
            x, y = y, x
        self.parent_size[x] += self.parent_size[y]
        self.parent_size[y] = x
        self.A[x] = self.op(l, r)
        return 
    
    def __getitem__(self, n):
        return self.A[self.leader(n)]
    
    def update(self, n, a):
        self.A[self.leader(n)] = a
 
    def same(self, a, b):
        return self.leader(a) == self.leader(b)
 
    def size(self, a):
        return abs(self.parent_size[self.leader(a)])
 
    def groups(self):
        result = [[] for _ in range(self.n)]
        for i in range(self.n):
            result[self.leader(i)].append(i)
        return [r for r in result if r != []]

N, M = map(int, input().split())
A = list(map(int, input().split()))
edge = [list(map(int, input().split())) for _ in range(M)]

MOD = 998244353

UF = UnionFind(N, A, op)
for U, V in edge:
    UF.merge(U-1, V-1)

ans = 1
for i in range(N):
    ans *= UF[i]
    ans %= MOD

print(ans)
0