結果
問題 | No.2494 Sum within Components |
ユーザー | GOTKAKO |
提出日時 | 2023-10-06 21:45:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,047 bytes |
コンパイル時間 | 1,696 ms |
コンパイル使用メモリ | 178,644 KB |
実行使用メモリ | 15,076 KB |
最終ジャッジ日時 | 2024-07-26 15:55:46 |
合計ジャッジ時間 | 2,950 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 6 ms
5,376 KB |
testcase_10 | AC | 7 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 31 ms
9,456 KB |
testcase_18 | AC | 37 ms
9,984 KB |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int N,M; cin >> N >> M; vector<long long> A(N); for(auto &a : A) cin >> a; long long mod = 998244353; vector<vector<long long>> Graph(N); for(int i=0; i<M; i++){ int u,v; cin >> u >> v; u--; v--; Graph.at(u).push_back(v); Graph.at(v).push_back(u); } vector<bool> visited(N); long long answer = 1; for(int i=0; i<N; i++){ if(visited.at(i)) continue; visited.at(i) = true; long long now = 0,siz = 0; queue<int> Q; Q.push(i); while(Q.size()){ int pos = Q.front(); Q.pop(); now += A.at(pos); siz++; for(auto to : Graph.at(pos)){ if(visited.at(to)) continue; visited.at(to) = true; Q.push(to); } } for(int k=0; k<siz; k++) answer = answer*now %mod; } cout << answer << endl; }