結果

問題 No.2494 Sum within Components
ユーザー june19312june19312
提出日時 2023-10-06 22:05:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 1,524 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 150,664 KB
最終ジャッジ日時 2024-07-26 16:10:26
合計ジャッジ時間 4,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,056 KB
testcase_01 AC 42 ms
54,312 KB
testcase_02 AC 40 ms
54,412 KB
testcase_03 AC 39 ms
54,744 KB
testcase_04 AC 41 ms
54,880 KB
testcase_05 AC 40 ms
54,976 KB
testcase_06 AC 42 ms
54,656 KB
testcase_07 AC 40 ms
54,768 KB
testcase_08 AC 41 ms
54,300 KB
testcase_09 AC 97 ms
77,276 KB
testcase_10 AC 116 ms
80,836 KB
testcase_11 AC 108 ms
77,988 KB
testcase_12 AC 121 ms
79,832 KB
testcase_13 AC 126 ms
79,544 KB
testcase_14 AC 391 ms
109,200 KB
testcase_15 AC 389 ms
100,544 KB
testcase_16 AC 257 ms
108,536 KB
testcase_17 AC 189 ms
150,664 KB
testcase_18 AC 257 ms
140,236 KB
testcase_19 AC 449 ms
124,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = [-1] + list(map(int,input().split()))
mod = 998244353

G = []
for i in range(N+1):
    G.append([])

for i in range(M):
    U,V = map(int,input().split())
    G[U].append(V)
    G[V].append(U)

from collections import deque

def renketu_seibunsuu():
    number_of_renketu = 0 #連結成分数
    number_of_visited = 0 #訪問済み頂点
    renketu_dict = {} #最後に関数が返す辞書

    visited = [False]*(N+1)

    edge = 0
    for ii in range(10_000_000): #連結成分数が1000万を超えそうなときは要調整
        QQ = deque()
        renketu_dict[ii] = []

        for i in range(edge+1,len(visited)):
            if i == 0:
                continue
            if visited[i] == False:
                QQ.append(i)
                visited[i] = True
                number_of_visited+=1
                renketu_dict[ii].append(i)
                edge = i
                break

        while len(QQ)>0:
            tmp = QQ.popleft()
            for j in G[tmp]:
                if visited[j] == False:
                    visited[j] = True
                    QQ.append(j)
                    number_of_visited+=1
                    renketu_dict[ii].append(j)

        if number_of_visited >= N:
            break
    
    return renketu_dict

ren_seibun = renketu_seibunsuu()

ans = 1
for ind,nex in ren_seibun.items():
    tmp = 0
    for ii,vv in enumerate(nex):
        tmp += A[vv]
    
    ans *= pow(tmp,len(nex),mod)
    ans %= mod

print(ans%mod)

    
0