結果
問題 | No.2494 Sum within Components |
ユーザー | VvyLw |
提出日時 | 2023-10-07 00:03:38 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 70 ms / 2,000 ms |
コード長 | 553 bytes |
コンパイル時間 | 1,434 ms |
コンパイル使用メモリ | 112,428 KB |
実行使用メモリ | 17,176 KB |
最終ジャッジ日時 | 2024-07-26 17:29:07 |
合計ジャッジ時間 | 2,645 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,948 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 5 ms
6,940 KB |
testcase_10 | AC | 8 ms
6,940 KB |
testcase_11 | AC | 4 ms
6,940 KB |
testcase_12 | AC | 9 ms
6,940 KB |
testcase_13 | AC | 7 ms
6,944 KB |
testcase_14 | AC | 55 ms
9,300 KB |
testcase_15 | AC | 54 ms
7,296 KB |
testcase_16 | AC | 38 ms
11,264 KB |
testcase_17 | AC | 49 ms
17,176 KB |
testcase_18 | AC | 53 ms
16,884 KB |
testcase_19 | AC | 70 ms
13,360 KB |
ソースコード
#include <iostream> #include <vector> #include <atcoder/dsu> #include <atcoder/modint> typedef atcoder::modint998244353 mint; int main() { std::cin.tie(nullptr) -> sync_with_stdio(false); int n, m; std::cin >> n >> m; std::vector<int> a(n); for(auto &el: a) std::cin >> el; atcoder::dsu uf(n); while(m--) { int u, v; std::cin >> u >> v; uf.merge(--u, --v); } mint ans = 1; for(const auto g: uf.groups()) { mint res = 0; for(const auto i: g) { res += a[i]; } ans *= res.pow(std::ssize(g)); } std::cout << ans.val() << '\n'; }