結果

問題 No.2588 Increasing Record
ユーザー 👑 potato167potato167
提出日時 2023-12-16 03:37:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 374 ms / 3,000 ms
コード長 1,548 bytes
コンパイル時間 2,674 ms
コンパイル使用メモリ 218,776 KB
実行使用メモリ 45,224 KB
最終ジャッジ日時 2024-09-27 07:22:30
合計ジャッジ時間 14,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 95 ms
15,488 KB
testcase_13 AC 93 ms
15,360 KB
testcase_14 AC 95 ms
14,592 KB
testcase_15 AC 114 ms
15,744 KB
testcase_16 AC 193 ms
21,888 KB
testcase_17 AC 258 ms
27,904 KB
testcase_18 AC 302 ms
32,360 KB
testcase_19 AC 297 ms
33,920 KB
testcase_20 AC 290 ms
32,868 KB
testcase_21 AC 283 ms
32,852 KB
testcase_22 AC 284 ms
32,804 KB
testcase_23 AC 292 ms
32,896 KB
testcase_24 AC 287 ms
32,768 KB
testcase_25 AC 213 ms
23,808 KB
testcase_26 AC 251 ms
27,264 KB
testcase_27 AC 251 ms
31,872 KB
testcase_28 AC 256 ms
31,744 KB
testcase_29 AC 259 ms
31,820 KB
testcase_30 AC 266 ms
24,908 KB
testcase_31 AC 317 ms
30,676 KB
testcase_32 AC 355 ms
36,096 KB
testcase_33 AC 371 ms
37,352 KB
testcase_34 AC 365 ms
37,400 KB
testcase_35 AC 374 ms
37,504 KB
testcase_36 AC 366 ms
37,452 KB
testcase_37 AC 272 ms
33,280 KB
testcase_38 AC 237 ms
26,288 KB
testcase_39 AC 253 ms
36,096 KB
testcase_40 AC 249 ms
36,992 KB
testcase_41 AC 256 ms
39,128 KB
testcase_42 AC 289 ms
40,704 KB
testcase_43 AC 348 ms
45,224 KB
testcase_44 AC 175 ms
23,296 KB
testcase_45 AC 197 ms
26,368 KB
testcase_46 AC 202 ms
32,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC optimize("unroll-loops")
using namespace std;
using ll=long long;
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<ll> dp(N,1);
    ll ans=0;
    vector<int> par(N);
    vector<set<int>> s(N);
    rep(i,0,N) par[i]=i;
    ll 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]){
            if(s[a].count(x)){
                dp[x]=(dp[x]+dp[b]-val)%mod;
            }
            else{
                dp[x]=(dp[x]+dp[b]-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