結果

問題 No.2494 Sum within Components
ユーザー KumaTachiRenKumaTachiRen
提出日時 2023-09-12 12:08:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 105,332 KB
最終ジャッジ日時 2024-06-30 00:34:02
合計ジャッジ時間 4,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 37 ms
52,072 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 37 ms
52,736 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 108 ms
77,044 KB
testcase_10 AC 136 ms
77,924 KB
testcase_11 AC 102 ms
77,132 KB
testcase_12 AC 156 ms
77,720 KB
testcase_13 AC 135 ms
77,248 KB
testcase_14 AC 305 ms
90,976 KB
testcase_15 AC 286 ms
86,308 KB
testcase_16 AC 159 ms
89,108 KB
testcase_17 AC 94 ms
102,012 KB
testcase_18 AC 149 ms
104,312 KB
testcase_19 AC 339 ms
105,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

class UnionFind:
    def __init__(self, n, data):
        self.n = n
        self.par = [-1] * n
        self.d = list(data)

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

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y: return
        if self.par[x] > self.par[y]: x, y = y, x
        self.par[x] += self.par[y]
        self.par[y] = x
        self.d[x] += self.d[y]
        if self.d[x] >= MOD: self.d[x] -= MOD

    def size(self, x): return -self.par[self.find(x)]

    def data(self, x): return self.d[self.find(x)]


n, m = map(int, input().split(" "))
a = list(map(int, input().split(" ")))

uf = UnionFind(n, a)

for _ in range(m):
	u, v = map(int, input().split(" "))
	uf.unite(u - 1, v - 1)

ans = 1
for x in range(n):
	if uf.find(x) != x: continue
	c = uf.size(x)
	s = uf.data(x)
	for _ in range(c):
		ans = ans * s % MOD

print(ans)
0