結果

問題 No.2494 Sum within Components
ユーザー HaaHaa
提出日時 2023-10-06 21:28:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,371 bytes
コンパイル時間 1,570 ms
コンパイル使用メモリ 169,480 KB
実行使用メモリ 7,856 KB
最終ジャッジ日時 2023-10-06 21:28:53
合計ジャッジ時間 3,451 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 11 ms
4,376 KB
testcase_10 AC 12 ms
4,376 KB
testcase_11 AC 5 ms
4,380 KB
testcase_12 AC 18 ms
4,380 KB
testcase_13 AC 12 ms
4,376 KB
testcase_14 AC 137 ms
6,212 KB
testcase_15 AC 141 ms
5,444 KB
testcase_16 AC 67 ms
6,072 KB
testcase_17 AC 79 ms
7,796 KB
testcase_18 AC 85 ms
7,856 KB
testcase_19 AC 163 ms
7,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
template<typename T> bool chmax(T& x, const T& y){return (x<y)?(x=y,true):false;};
template<typename T> bool chmin(T& x, const T& y){return (x>y)?(x=y,true):false;};
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

struct Unionfind{
    vector<int> par, siz;
    Unionfind(int N):par(N), siz(N,1){
        for(int i=0;i<N;i++) par[i]=i;
    }
    int root(int x){
        while(par[x]!=x) x=par[x]=par[par[x]];
        return x;
    }
    void unite(int x, int y){
        x=root(x); y=root(y);
        if(x==y) return;
        if(siz[x]<siz[y]) swap(x,y);
        siz[x]+=siz[y];
        par[y]=x;
    }
    bool same(int x, int y){
        return root(x)==root(y);
    }
    int size(int x){
        return siz[root(x)];
    }
};

int main(){
    int n, m; cin >> n >> m;
    VI a(n); REP(i,n) cin >> a[i];
    Unionfind uf(n);
    int u, v;
    REP(i,m){
        cin >> u >> v;
        u--, v--;
        uf.unite(u,v);
    }
    VI sum(n,0);
    REP(i,n){
        int r=uf.root(i);
        sum[r]=(sum[r]+a[i])%MOD;
    }
    ll ans=1;
    REP(i,n){
        int r=uf.root(i);
        ans=ans*sum[r]%MOD;
    }
    cout << ans << endl;
    return 0;
}
0