結果

問題 No.2494 Sum within Components
ユーザー nononnonon
提出日時 2024-09-10 10:18:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 2,508 ms
コンパイル使用メモリ 215,084 KB
実行使用メモリ 18,056 KB
最終ジャッジ日時 2024-09-10 10:18:55
合計ジャッジ時間 4,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 5 ms
6,944 KB
testcase_12 AC 9 ms
6,944 KB
testcase_13 AC 7 ms
6,944 KB
testcase_14 AC 53 ms
9,728 KB
testcase_15 AC 53 ms
7,808 KB
testcase_16 AC 38 ms
11,648 KB
testcase_17 AC 48 ms
18,056 KB
testcase_18 AC 52 ms
17,656 KB
testcase_19 AC 74 ms
14,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/dsu>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,M;
    cin>>N>>M;
    vector<int>A(N);
    for(int i=0;i<N;i++)cin>>A[i];
    atcoder::dsu uf(N);
    for(;M--;)
    {
        int u,v;
        cin>>u>>v;
        u--,v--;
        uf.merge(u,v);
    }
    vector<mint>sum(N);
    for(auto V:uf.groups())
    {
        mint S=0;
        for(int v:V)S+=A[v];
        for(int v:V)sum[v]=S;
    }
    mint ans=1;
    for(int i=0;i<N;i++)ans*=sum[i];
    cout<<ans.val()<<endl;
}
0