結果

問題 No.1194 Replace
ユーザー chocoruskchocorusk
提出日時 2020-08-22 14:37:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 788 ms / 2,000 ms
コード長 1,446 bytes
コンパイル時間 1,377 ms
コンパイル使用メモリ 139,380 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-10-15 08:51:56
合計ジャッジ時間 13,750 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 491 ms
31,616 KB
testcase_01 AC 526 ms
32,640 KB
testcase_02 AC 383 ms
28,800 KB
testcase_03 AC 315 ms
26,624 KB
testcase_04 AC 525 ms
32,640 KB
testcase_05 AC 484 ms
31,360 KB
testcase_06 AC 417 ms
29,952 KB
testcase_07 AC 779 ms
41,400 KB
testcase_08 AC 768 ms
41,344 KB
testcase_09 AC 753 ms
41,344 KB
testcase_10 AC 783 ms
41,216 KB
testcase_11 AC 772 ms
41,216 KB
testcase_12 AC 788 ms
41,468 KB
testcase_13 AC 402 ms
25,088 KB
testcase_14 AC 331 ms
23,168 KB
testcase_15 AC 272 ms
23,168 KB
testcase_16 AC 370 ms
24,960 KB
testcase_17 AC 239 ms
22,144 KB
testcase_18 AC 251 ms
21,376 KB
testcase_19 AC 371 ms
25,088 KB
testcase_20 AC 7 ms
13,312 KB
testcase_21 AC 6 ms
13,184 KB
testcase_22 AC 6 ms
13,056 KB
testcase_23 AC 96 ms
17,664 KB
testcase_24 AC 33 ms
15,232 KB
testcase_25 AC 19 ms
13,696 KB
testcase_26 AC 136 ms
17,664 KB
testcase_27 AC 27 ms
14,080 KB
testcase_28 AC 60 ms
15,360 KB
testcase_29 AC 10 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
    int n, m; cin>>n>>m;
    int b[200020], c[200020];
    map<int, int> mp;
    for(int i=0; i<m; i++){
        cin>>b[i]>>c[i];
        mp[b[i]]=0, mp[c[i]]=0;
    }
    int v[400040];
    int l=0;
    for(auto &p:mp){
        p.second=l;
        v[l]=p.first;
        l++;
    }
    vector<int> g[400040];
    for(int i=0; i<m; i++){
        int x=mp[b[i]], y=mp[c[i]];
        g[y].push_back(x);
    }
    bool used[400040]={};
    ll cnt=0; ll sum=0;
    auto dfs=[&](auto dfs, int x, int mx)->void{
        used[x]=1;
        cnt++;
        sum+=v[x];
        for(auto y:g[x]){
            if(!used[y] && y<mx){
                dfs(dfs, y, mx);
            }
        }
    };
    ll ans=(ll)n*(n+1)/2;
    for(int i=l-1; i>=0; i--){
        if(used[i]) continue;
        cnt=0;
        sum=0;
        dfs(dfs, i, i);
        ans+=cnt*v[i]-sum;
    }
    cout<<ans<<endl;
    return 0;
}
0