結果

問題 No.2494 Sum within Components
ユーザー ThetaTheta
提出日時 2024-05-10 19:36:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 1,931 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 105,264 KB
最終ジャッジ日時 2024-05-10 19:36:40
合計ジャッジ時間 5,202 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
53,464 KB
testcase_01 AC 38 ms
53,496 KB
testcase_02 AC 38 ms
53,160 KB
testcase_03 AC 38 ms
53,632 KB
testcase_04 AC 38 ms
53,056 KB
testcase_05 AC 39 ms
54,596 KB
testcase_06 AC 37 ms
52,964 KB
testcase_07 AC 39 ms
53,556 KB
testcase_08 AC 38 ms
53,292 KB
testcase_09 AC 123 ms
77,784 KB
testcase_10 AC 152 ms
79,016 KB
testcase_11 AC 90 ms
77,320 KB
testcase_12 AC 181 ms
79,024 KB
testcase_13 AC 161 ms
78,368 KB
testcase_14 AC 343 ms
100,452 KB
testcase_15 AC 311 ms
93,720 KB
testcase_16 AC 173 ms
99,100 KB
testcase_17 AC 104 ms
103,724 KB
testcase_18 AC 151 ms
104,624 KB
testcase_19 AC 408 ms
105,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
from itertools import pairwise

import sys
sys.setrecursionlimit(2000000)


class UnionFindTree:
    def __init__(self, length: int, values: list[int], value_mod: int) -> None:
        self.list = [idx for idx in range(length)]
        self.size = [1 for _ in range(length)]
        self.value = [value for value in values]
        self.mod = value_mod

    def get_root(self, idx: int) -> int:
        if self.list[idx] == idx:
            return idx
        self.list[idx] = self.get_root(self.list[idx])
        return self.list[idx]

    def is_same(self, idx1: int, idx2: int) -> bool:
        return self.get_root(idx1) == self.get_root(idx2)

    def merge(self, idx1: int, idx2: int):
        if self.is_same(idx1, idx2):
            return

        idx1_root = self.get_root(idx1)
        idx2_root = self.get_root(idx2)
        if self.size[idx1_root] > self.size[idx2_root]:
            self.list[idx2_root] = idx1_root
            self.size[idx1_root] += self.size[idx2_root]
            self.value[idx1_root] += self.value[idx2_root]
            self.value[idx1_root] %= self.mod
        else:
            self.list[idx1_root] = idx2_root
            self.size[idx2_root] += self.size[idx1_root]
            self.value[idx2_root] += self.value[idx1_root]
            self.value[idx2_root] %= self.mod

    def get_size(self, idx: int) -> int:
        return self.size[self.get_root(idx)]

    def get_value(self, idx: int) -> int:
        return self.value[self.get_root(idx)] % self.mod


def main():
    MOD = 998244353
    N, M = map(int, input().split())
    A = list(map(int, input().split()))
    uft = UnionFindTree(N, A, MOD)
    for _ in range(M):
        U, V = map(lambda n: int(n) - 1, input().split())
        uft.merge(U, V)

    ans = 1
    for node in range(N):
        ans *= uft.get_value(node)
        ans %= MOD
    print(ans)


if __name__ == "__main__":
    main()
0