結果

問題 No.1194 Replace
ユーザー auauaauaua
提出日時 2020-08-22 17:25:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,498 ms / 2,000 ms
コード長 1,674 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 188,340 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-10-15 11:17:26
合計ジャッジ時間 25,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 992 ms
52,608 KB
testcase_01 AC 1,047 ms
55,808 KB
testcase_02 AC 803 ms
45,684 KB
testcase_03 AC 666 ms
39,040 KB
testcase_04 AC 1,050 ms
55,808 KB
testcase_05 AC 976 ms
51,968 KB
testcase_06 AC 885 ms
48,768 KB
testcase_07 AC 1,439 ms
76,672 KB
testcase_08 AC 1,460 ms
76,612 KB
testcase_09 AC 1,429 ms
76,672 KB
testcase_10 AC 1,498 ms
76,672 KB
testcase_11 AC 1,480 ms
76,616 KB
testcase_12 AC 1,467 ms
76,672 KB
testcase_13 AC 809 ms
39,040 KB
testcase_14 AC 681 ms
33,720 KB
testcase_15 AC 556 ms
32,000 KB
testcase_16 AC 936 ms
38,340 KB
testcase_17 AC 619 ms
29,568 KB
testcase_18 AC 489 ms
28,124 KB
testcase_19 AC 728 ms
38,912 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 186 ms
16,000 KB
testcase_24 AC 56 ms
8,320 KB
testcase_25 AC 21 ms
5,248 KB
testcase_26 AC 222 ms
16,640 KB
testcase_27 AC 35 ms
5,760 KB
testcase_28 AC 94 ms
9,856 KB
testcase_29 AC 9 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
#define vec vector<ll>
#define mat vector<vector<ll> >
#define fi first
#define se second
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
typedef long double ld;
typedef complex<double> comp;
const ll inf=1e9+7;
const ll mod=998244353;
const int MAX=300010;


signed main(){
    ll n,m;cin>>n>>m;
    map<ll,ll>idx;
    vector<ll>inv(2*m);
    map<ll,ll>con;
    vector<vector<ll> >G(2*m);
    ll now=0;
    vector<ll>q(m);
    rep(i,m){
        ll b,c;cin>>b>>c; 
        con[b]=b;
        con[c]=c;
        q[i]=c;
        if(idx.find(c)==idx.end()){
            idx[c]=now;
            now++;
        }
        if(idx.find(b)==idx.end()){
            idx[b]=now;
            now++;
        }
        inv[idx[c]]=c;
        inv[idx[b]]=b;
        G[idx[c]].pb(idx[b]);
    }
    sort(rall(q));
    vector<ll>used(2*m);
    rep(i,m){
        if(used[idx[q[i]]])continue;
        ll c=q[i];
        queue<ll>q;
        used[idx[c]]=1;
        q.push(idx[c]);
        while(!q.empty()){
            ll k=q.front();
            q.pop();
            //cout<<inv[k]<<' '<<c<<endl;
            for(auto e:G[k]){
                if(used[e])continue;
                con[inv[e]]=max(con[inv[e]],c);
                used[e]=1;
                q.push(e);
            }
        }
    }
    ll ans=n*(n+1)/2;
    for(auto e:con){
        ans+=e.se-e.fi;
    }
    cout<<ans<<endl;
}
0