結果
問題 | No.2494 Sum within Components |
ユーザー | Mottchan |
提出日時 | 2023-10-06 23:21:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,045 bytes |
コンパイル時間 | 189 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,276 KB |
最終ジャッジ日時 | 2024-07-26 17:05:13 |
合計ジャッジ時間 | 4,610 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
17,948 KB |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | AC | 31 ms
10,880 KB |
testcase_03 | AC | 32 ms
11,008 KB |
testcase_04 | AC | 31 ms
11,008 KB |
testcase_05 | AC | 31 ms
11,136 KB |
testcase_06 | AC | 31 ms
11,008 KB |
testcase_07 | AC | 160 ms
11,136 KB |
testcase_08 | AC | 31 ms
11,008 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
import sys sys.setrecursionlimit(5*10**5) input = sys.stdin.readline from collections import defaultdict, deque, Counter from heapq import heappop, heappush from bisect import bisect_left, bisect_right from math import gcd from itertools import product, permutations #重複あり:list(product(list('123'),repeat = 2)),重複なし:list(permutations(list('123'))) MOD = 998244353 n,m = map(int,input().split()) l = list(map(int,input().split())) graph = [[]*m for _ in range(n)] for i in range(m): a,b = map(int,input().split()) a-=1 b-=1 graph[a].append(b) graph[b].append(a) def dfs(crr, v): v[crr] = True road.add(crr) for nxt in graph[crr]: if v[nxt]:continue dfs(nxt, v) v[crr] = False #road.pop(crr) vi=[False]*n ans=1 visit=set() for i in range(n): if i in visit:continue road = set() dfs(i,vi) visit |= road aa=0 #print(road) for j in list(road): aa += l[j] if aa: ans *= aa ** len(list(road)) ans %= MOD print(ans)