結果

問題 No.2494 Sum within Components
ユーザー rlangevinrlangevin
提出日時 2023-10-06 21:34:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 1,218 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 106,172 KB
最終ジャッジ日時 2024-07-26 15:49:43
合計ジャッジ時間 3,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 34 ms
52,864 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 33 ms
52,480 KB
testcase_07 AC 34 ms
52,480 KB
testcase_08 AC 38 ms
52,736 KB
testcase_09 AC 89 ms
76,672 KB
testcase_10 AC 110 ms
78,736 KB
testcase_11 AC 64 ms
73,028 KB
testcase_12 AC 134 ms
78,464 KB
testcase_13 AC 117 ms
77,952 KB
testcase_14 AC 228 ms
99,968 KB
testcase_15 AC 200 ms
92,268 KB
testcase_16 AC 118 ms
97,024 KB
testcase_17 AC 101 ms
105,528 KB
testcase_18 AC 123 ms
106,172 KB
testcase_19 AC 252 ms
104,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

    def is_same(self, x, y):
        return self.find(x) == self.find(y)

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]


N, M = map(int, input().split())
A = list(map(int, input().split()))
U = UnionFind(N)
for i in range(M):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    U.union(u, v)
    
ans = [0] * N
for i in range(N):
    ans[U.find(i)] += A[i]
    
ans1 = 1
mod = 998244353
for i in range(N):
    ans1 *= ans[U.find(i)]
    ans1 %= mod
    
print(ans1)
0