結果

問題 No.1194 Replace
ユーザー snow39snow39
提出日時 2020-08-22 15:27:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 810 ms / 2,000 ms
コード長 2,574 bytes
コンパイル時間 1,504 ms
コンパイル使用メモリ 119,808 KB
実行使用メモリ 103,236 KB
最終ジャッジ日時 2024-10-15 09:42:00
合計ジャッジ時間 15,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 553 ms
65,920 KB
testcase_01 AC 586 ms
69,228 KB
testcase_02 AC 455 ms
57,828 KB
testcase_03 AC 347 ms
50,272 KB
testcase_04 AC 587 ms
69,568 KB
testcase_05 AC 552 ms
65,124 KB
testcase_06 AC 520 ms
61,456 KB
testcase_07 AC 793 ms
103,172 KB
testcase_08 AC 764 ms
103,160 KB
testcase_09 AC 803 ms
103,232 KB
testcase_10 AC 810 ms
103,236 KB
testcase_11 AC 808 ms
103,104 KB
testcase_12 AC 778 ms
103,228 KB
testcase_13 AC 427 ms
36,288 KB
testcase_14 AC 350 ms
28,960 KB
testcase_15 AC 326 ms
36,524 KB
testcase_16 AC 416 ms
37,024 KB
testcase_17 AC 290 ms
32,960 KB
testcase_18 AC 269 ms
27,244 KB
testcase_19 AC 420 ms
39,368 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 109 ms
18,620 KB
testcase_24 AC 32 ms
10,112 KB
testcase_25 AC 11 ms
5,248 KB
testcase_26 AC 114 ms
13,304 KB
testcase_27 AC 16 ms
5,248 KB
testcase_28 AC 49 ms
8,280 KB
testcase_29 AC 6 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <map>
#include <queue>
#include <iomanip>
#include <set>
#include <tuple>
#define mkp make_pair
#define mkt make_tuple
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define all(v) v.begin(),v.end()
using namespace std;
typedef long long ll;
const ll MOD=1e9+7;
template<class T> void chmin(T &a,const T &b){if(a>b) a=b;}
template<class T> void chmax(T &a,const T &b){if(a<b) a=b;}

/* example
    int n=scc.scc();
    scc.build(n,g);
    (g:outside)
*/
struct StronglyConnectedComponents{
    vector<int> used,cmp,vs;
    vector<vector<int>> ori;
    vector<vector<int>> v,rv;
    StronglyConnectedComponents(int n):used(n),cmp(n,-1),v(n),rv(n){}
 
    void add_edge(int x,int y){
        v[x].push_back(y);
        rv[y].push_back(x);
    }
    void dfs(int x){
        used[x]=true;
        for(auto to:v[x]) if(!used[to]) dfs(to);
        vs.push_back(x);
    }
 
    void rdfs(int x,int k){
        cmp[x]=k;
        for(auto to:rv[x]) if(cmp[to]==-1) rdfs(to,k);
    }
 
    int scc(){
        for(int i=0;i<used.size();i++) if(!used[i]) dfs(i);
        reverse(vs.begin(),vs.end());
        int k=0;
        for(auto x:vs) if(cmp[x]==-1) rdfs(x,k++);

        ori.resize(k);
        for(int i=0;i<used.size();i++) ori[cmp[i]].push_back(i);

        return k;//k:size
    }

    void build(int k,vector<vector<int>> &g){
        g.resize(k);
        for(int i=0;i<v.size();i++){
            for(auto to:v[i]){
                int x=cmp[i],y=cmp[to];
                if(x!=y) g[x].push_back(y);
            }
        }
    }
};

vector<vector<int>> g;
vector<int> vis;
vector<int> dp;
vector<ll> B,C;

void dfs(int now){
  if(vis[now]) return;
  for(auto nex:g[now]){
    dfs(nex);
    chmax(dp[now],dp[nex]);
  }
  vis[now]=1;
}

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);

  ll N,M;
  cin>>N>>M;
  B.resize(M);
  C.resize(M);
  rep(i,M) cin>>B[i]>>C[i];

  vector<int> v;
  rep(i,M) v.push_back(B[i]);
  rep(i,M) v.push_back(C[i]);
  sort(all(v));
  v.erase(unique(all(v)),v.end());
  int V=v.size();
  map<int,int> mp;
  rep(i,V) mp[v[i]]=i;
  
  StronglyConnectedComponents scc(V);
  rep(i,M){
    scc.add_edge(mp[B[i]],mp[C[i]]);
  }
  int S=scc.scc();
  scc.build(S,g);

  dp.resize(S,0);
  for(int i=0;i<V;i++) chmax(dp[scc.cmp[i]],v[i]);
  vis.resize(S,0);
  for(int i=0;i<S;i++){
    if(vis[i]) continue;
    dfs(i);
  }

  ll ans=N*(N+1)/2;
  for(int i=0;i<V;i++){
    ans-=v[i];
    ans+=dp[scc.cmp[i]];
  }
  cout<<ans<<endl;

  return 0;
}
0