結果

問題 No.2494 Sum within Components
ユーザー ronpooronpoo
提出日時 2023-10-27 16:10:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 943 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 174,224 KB
最終ジャッジ日時 2024-09-25 13:04:22
合計ジャッジ時間 6,085 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,884 KB
testcase_01 AC 37 ms
52,904 KB
testcase_02 AC 37 ms
53,076 KB
testcase_03 AC 38 ms
53,492 KB
testcase_04 AC 37 ms
53,556 KB
testcase_05 AC 37 ms
53,088 KB
testcase_06 AC 37 ms
52,064 KB
testcase_07 AC 37 ms
53,104 KB
testcase_08 AC 37 ms
52,932 KB
testcase_09 AC 114 ms
83,896 KB
testcase_10 AC 122 ms
80,364 KB
testcase_11 AC 89 ms
77,864 KB
testcase_12 AC 140 ms
84,632 KB
testcase_13 AC 125 ms
80,528 KB
testcase_14 AC 807 ms
162,060 KB
testcase_15 AC 765 ms
166,664 KB
testcase_16 AC 200 ms
99,228 KB
testcase_17 AC 146 ms
125,856 KB
testcase_18 AC 194 ms
116,492 KB
testcase_19 AC 943 ms
174,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

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

G = [[] for _ in range(N)]
for i in range(M):
    u, v = UV[i]
    u -= 1
    v -= 1
    G[u].append(v)
    G[v].append(u)
    
link = [-1] * N

def dfs(now):
    for nxt in G[now]:
        if link[now] == link[nxt]:
            continue
        link[nxt] = link[now]
        dfs(nxt)

cnt = 0
for i in range(N):
    if link[i] != -1:
        continue
    cnt += 1
    link[i] = cnt
    dfs(i)

a = [[0] * 2 for _ in range(cnt)]
for i in range(N):
    a[link[i]-1][0] += A[i]
    a[link[i]-1][1] += 1
    
ans = 1
for x, y in a:
    ans *= x ** y
    ans %= MOD
print(ans)
0