結果

問題 No.2494 Sum within Components
ユーザー mymelochanmymelochan
提出日時 2023-10-06 21:38:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 1,364 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 106,892 KB
最終ジャッジ日時 2024-07-26 15:52:23
合計ジャッジ時間 2,971 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,872 KB
testcase_01 AC 43 ms
54,884 KB
testcase_02 AC 43 ms
55,224 KB
testcase_03 AC 37 ms
55,164 KB
testcase_04 AC 38 ms
55,480 KB
testcase_05 AC 39 ms
54,504 KB
testcase_06 AC 44 ms
55,980 KB
testcase_07 AC 40 ms
55,292 KB
testcase_08 AC 43 ms
55,120 KB
testcase_09 AC 102 ms
77,136 KB
testcase_10 AC 97 ms
78,244 KB
testcase_11 AC 69 ms
77,096 KB
testcase_12 AC 118 ms
77,964 KB
testcase_13 AC 103 ms
77,340 KB
testcase_14 AC 206 ms
98,112 KB
testcase_15 AC 200 ms
92,284 KB
testcase_16 AC 122 ms
96,820 KB
testcase_17 AC 98 ms
105,960 KB
testcase_18 AC 122 ms
106,892 KB
testcase_19 AC 243 ms
105,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

class dsu:

    def __init__(self,n):
        self.N = n
        self.cnt=[1]*self.N
        self.root=list(range(self.N))
        self.components = self.N

    def unite(self,x,y):
        x=self.leader(x)
        y=self.leader(y)
        if x!=y:
            self.components -= 1
            if self.cnt[x]<self.cnt[y]:
                x,y=y,x
            self.cnt[x]+=self.cnt[y]
            self.root[y]=x
            return x
        return None

    def leader(self,x):
        if self.root[x]==x:
            return x
        self.root[x]=self.leader(self.root[x])
        return self.root[x]

MOD = 998244353
#############################################################

N,M = lmin()
A = lmin()
uf = dsu(N)
for _ in range(M):
    u,v = lmin()
    u,v = u-1,v-1
    uf.unite(u,v)

cnt = [0]*N
for i in range(N):
    l = uf.leader(i)
    cnt[l] += A[i]
    cnt[l] %= MOD

ans = 1
for i in range(N):
    ans *= cnt[uf.leader(i)]
    ans %= MOD

print(ans)
0