結果

問題 No.2588 Increasing Record
ユーザー 👑 potato167potato167
提出日時 2023-12-16 04:00:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 348 ms / 3,000 ms
コード長 1,452 bytes
コンパイル時間 2,557 ms
コンパイル使用メモリ 218,896 KB
実行使用メモリ 44,516 KB
最終ジャッジ日時 2024-09-27 07:22:44
合計ジャッジ時間 12,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 102 ms
15,360 KB
testcase_13 AC 102 ms
15,488 KB
testcase_14 AC 103 ms
14,848 KB
testcase_15 AC 122 ms
15,616 KB
testcase_16 AC 208 ms
21,760 KB
testcase_17 AC 256 ms
27,440 KB
testcase_18 AC 307 ms
31,760 KB
testcase_19 AC 286 ms
33,244 KB
testcase_20 AC 266 ms
32,084 KB
testcase_21 AC 263 ms
32,028 KB
testcase_22 AC 265 ms
31,988 KB
testcase_23 AC 262 ms
32,032 KB
testcase_24 AC 257 ms
32,020 KB
testcase_25 AC 195 ms
23,392 KB
testcase_26 AC 220 ms
26,808 KB
testcase_27 AC 226 ms
31,068 KB
testcase_28 AC 223 ms
30,972 KB
testcase_29 AC 229 ms
31,136 KB
testcase_30 AC 246 ms
24,608 KB
testcase_31 AC 304 ms
30,056 KB
testcase_32 AC 324 ms
35,412 KB
testcase_33 AC 331 ms
36,532 KB
testcase_34 AC 348 ms
36,640 KB
testcase_35 AC 329 ms
36,716 KB
testcase_36 AC 330 ms
36,708 KB
testcase_37 AC 256 ms
32,572 KB
testcase_38 AC 237 ms
25,972 KB
testcase_39 AC 244 ms
35,404 KB
testcase_40 AC 232 ms
36,356 KB
testcase_41 AC 222 ms
38,444 KB
testcase_42 AC 248 ms
39,824 KB
testcase_43 AC 315 ms
44,516 KB
testcase_44 AC 171 ms
22,944 KB
testcase_45 AC 188 ms
25,976 KB
testcase_46 AC 182 ms
31,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("unroll-loops")
using namespace std;
const int mod=998244353;
#define rep(i,a,b) for (int i=(int)(a);i<(int)(b);i++)

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int N,M;
    cin>>N>>M;
    vector<vector<int>> G(N);
    rep(i,0,M){
        int a,b;
        cin>>a>>b;
        a--,b--;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    vector<int> dp(N,1);
    int ans=0;
    vector<int> par(N);
    vector<set<int>> s(N);
    rep(i,0,N) par[i]=i;
    int val=0;
    auto root=[&](auto self,int var) -> int {
        if(var==par[var]) return var;
        par[var]=self(self,par[var]);
        return par[var];
    };
    auto unite=[&](int a,int b) -> void {
        a=root(root,a);
        b=root(root,b);
        if(s[a].size()<s[b].size()) swap(a,b);
        for(auto x:s[b]){
            dp[x]=(dp[x]+dp[b])%mod;
            dp[x]=(dp[x]-(s[a].count(x)?val:dp[a]))%mod;
            s[a].insert(x);
        }
        par[b]=a;
    };
    rep(i,0,N){
        set<int> tmp;
        for(auto x:G[i]){
            if(x<i) tmp.insert(root(root,x));
            else s[i].insert(x);
        }
        for(auto x:tmp) dp[i]=(dp[i]+dp[x])%mod;
        for(auto x:tmp) dp[x]=(dp[x]+dp[i])%mod;
        ans=(ans+dp[i])%mod;
        val=dp[i];
        for(auto x:tmp){
            s[x].erase(i);
            unite(i,x);
        }
    }
    cout<<(ans+mod)%mod<<"\n";
}
0