結果

問題 No.1194 Replace
ユーザー definedefine
提出日時 2020-08-04 07:10:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 1,776 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 209,204 KB
実行使用メモリ 69,264 KB
最終ジャッジ日時 2024-09-14 04:06:00
合計ジャッジ時間 11,585 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
57,684 KB
testcase_01 AC 311 ms
59,472 KB
testcase_02 AC 246 ms
53,968 KB
testcase_03 AC 205 ms
50,572 KB
testcase_04 AC 316 ms
59,344 KB
testcase_05 AC 296 ms
57,420 KB
testcase_06 AC 271 ms
57,228 KB
testcase_07 AC 415 ms
69,260 KB
testcase_08 AC 420 ms
69,260 KB
testcase_09 AC 409 ms
69,220 KB
testcase_10 AC 414 ms
69,264 KB
testcase_11 AC 413 ms
69,132 KB
testcase_12 AC 411 ms
69,212 KB
testcase_13 AC 275 ms
51,920 KB
testcase_14 AC 230 ms
49,360 KB
testcase_15 AC 196 ms
47,696 KB
testcase_16 AC 253 ms
51,540 KB
testcase_17 AC 184 ms
46,416 KB
testcase_18 AC 184 ms
45,648 KB
testcase_19 AC 263 ms
51,536 KB
testcase_20 AC 15 ms
32,000 KB
testcase_21 AC 15 ms
31,872 KB
testcase_22 AC 16 ms
31,872 KB
testcase_23 AC 81 ms
38,860 KB
testcase_24 AC 34 ms
34,508 KB
testcase_25 AC 23 ms
32,896 KB
testcase_26 AC 99 ms
40,272 KB
testcase_27 AC 28 ms
33,616 KB
testcase_28 AC 50 ms
35,540 KB
testcase_29 AC 17 ms
32,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define rep(i,n) for(int i=0;i<n;i++)
#define REP(i,n) for(int i=1;i<n;i++)
#define rev(i,n) for(int i=n-1;i>=0;i--)
#define all(v) v.begin(),v.end()
#define P pair<int,int>
#define len(s) (int)s.size()

template<class T> inline bool chmin(T &a, T b){
	if(a>b){a=b;return true;}
	return false;
}
template<class T> inline bool chmax(T &a, T b){
	if(a<b){a=b;return true;}
	return false;
}
constexpr int mod = 1e9+7;
constexpr int inf = 3e18;

int N,M,Ans;
int B[200005],C[200005],cnt[400005];
vector<int>xx,G[400005],rG[400005];
bool used[400005];
vector<int>vs;
void dfs(int x){
    used[x]=true;
    for(int i:G[x])if(!used[i])dfs(i);
    vs.push_back(x);
}
int cmp[400005],mx[400005];
vector<int>newrG[400005];
void rdfs(int v,int k){
    used[v]=true;
    cmp[v]=k;
    cnt[k]++;chmax(mx[k],xx[v]);
    for(int i:rG[v])if(!used[i])rdfs(i,k);
}
int scc(){
    rep(i,N)if(!used[i])dfs(i);
    memset(used,0,sizeof(used));
    int k=0;
    rev(i,len(vs))if(!used[vs[i]])rdfs(vs[i],k++);
    rep(i,N){
        for(int j:G[i]){
            newrG[cmp[j]].push_back(cmp[i]);
        }
    }
    return k;
}
signed main(){
    cin.tie(0);ios::sync_with_stdio(false);
    cin>>N>>M;
    rep(i,M){
        cin>>B[i]>>C[i];
        xx.push_back(B[i]);
        xx.push_back(C[i]);
    }
    sort(all(xx));xx.erase(unique(all(xx)),xx.end());
    Ans=(1+N)*N/2;
    for(int i:xx)Ans-=i;
    rep(i,M){
        B[i]=lower_bound(all(xx),B[i])-xx.begin();
        C[i]=lower_bound(all(xx),C[i])-xx.begin();
        G[B[i]].push_back(C[i]);
        rG[C[i]].push_back(B[i]);
    }
    N=len(xx);
    N=scc();
    rev(i,N){
        Ans+=mx[i]*cnt[i];
        for(int j:newrG[i])chmax(mx[j],mx[i]);
    }
    cout<<Ans<<endl;
}
0