結果
問題 | No.2494 Sum within Components |
ユーザー | otamay6 |
提出日時 | 2023-10-15 23:46:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 849 bytes |
コンパイル時間 | 794 ms |
コンパイル使用メモリ | 76,108 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-16 22:08:07 |
合計ジャッジ時間 | 4,444 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 83 ms
6,940 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:47:21: warning: 'u' may be used uninitialized [-Wmaybe-uninitialized] 47 | int u,v; | ^ main.cpp:47:23: warning: 'v' may be used uninitialized [-Wmaybe-uninitialized] 47 | int u,v; | ^
ソースコード
#include<iostream> #include<vector> #include<utility> #define int long long struct uf{ std::vector<int> r; uf(int n):r(std::vector<int>(n, -1)){}; void change(int u, int val){ r[u] = -val; } int root(int u){ if(r[u]<0){ return u; } else{ return r[u] = root(r[u]); } } int size(int u){ return -r[root(u)]; } bool connect(int a,int b){ if(size(a) < size(b)){ std::swap(a,b); } if(root(a) == root(b)){ return false; } a = root(a); b = root(b); r[a] += r[b]; r[b] = a; return true; } }; signed main(void){ int n,m; std::cin>>n>>m; uf g(n); for(int i = 0; i < n; i++){ int a;std::cin>>a; g.change(i, a); } while(m--){ int u,v; u--;v--; g.connect(u,v); } int res = 1; for(int i=0; i < n; i++){ res *= g.size(i) % 998244353; res %= 998244353; } std::cout << res << std::endl; }