結果

問題 No.2494 Sum within Components
ユーザー startcppstartcpp
提出日時 2023-10-06 21:31:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 1,181 ms
コンパイル使用メモリ 100,872 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-07-26 15:47:58
合計ジャッジ時間 3,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 15 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 22 ms
5,376 KB
testcase_13 AC 15 ms
5,376 KB
testcase_14 AC 153 ms
9,600 KB
testcase_15 AC 155 ms
7,808 KB
testcase_16 AC 87 ms
11,776 KB
testcase_17 AC 105 ms
17,280 KB
testcase_18 AC 139 ms
16,896 KB
testcase_19 AC 186 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <functional>
#include <vector>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <cstdio>
#include <cmath>
#include <tuple>
#include <cassert>
#include <atcoder/dsu>
#include <atcoder/modint>
#define int long long
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;
using namespace atcoder;
using mint = modint998244353;

int n, m;
mint a[200000];

signed main() {
	int i;

	cin >> n >> m;
	rep(i, n) { int v; cin >> v; a[i] = v; }

	dsu uf(n);
	rep(i, m) {
		int u, v; cin >> u >> v; u--; v--;
		uf.merge(u, v);
	}

	auto gs = uf.groups();
	mint ans = 1;
	for (auto g: gs) {
		mint s = 0;
		for (int v: g) {
			s += a[v];
		}
		ans *= s.pow(g.size());
	}

	cout << ans.val() << endl;
	return 0;
}
0