結果

問題 No.2072 Anatomy
ユーザー hiro71687khiro71687k
提出日時 2023-03-03 09:36:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 1,446 bytes
コンパイル時間 3,778 ms
コンパイル使用メモリ 264,636 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-09-17 21:53:01
合計ジャッジ時間 8,782 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 101 ms
9,856 KB
testcase_09 AC 108 ms
10,496 KB
testcase_10 AC 108 ms
8,960 KB
testcase_11 AC 109 ms
10,112 KB
testcase_12 AC 84 ms
8,192 KB
testcase_13 AC 116 ms
10,880 KB
testcase_14 AC 72 ms
7,680 KB
testcase_15 AC 68 ms
7,936 KB
testcase_16 AC 117 ms
10,880 KB
testcase_17 AC 115 ms
10,752 KB
testcase_18 AC 58 ms
7,168 KB
testcase_19 AC 116 ms
11,008 KB
testcase_20 AC 115 ms
11,008 KB
testcase_21 AC 115 ms
11,136 KB
testcase_22 AC 115 ms
11,008 KB
testcase_23 AC 117 ms
11,008 KB
testcase_24 AC 114 ms
10,880 KB
testcase_25 AC 116 ms
11,008 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 112 ms
11,008 KB
testcase_28 AC 111 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=double;
ld pie=3.14159265359;
ll mod=998244353;
long long inf=100000000000000001;
struct unionfind
{
    vector<ll>par,siz;
    unionfind(ll n): par(n,-1),siz(n,1){}
    ll root(ll x){
        if (par[x]==-1)
        {
            return x;
        }else{
            return par[x]=root(par[x]);
        }
    }
    bool issame(ll x,ll y){
        return root(x)==root(y);
    }
    bool unite(ll x,ll y){
        x=root(x);
        y=root(y);
        if (x==y)
        {
            return false;
        }
        if (siz[x]<siz[y])
        {
            swap(x,y);
        }
        par[y]=x;
        siz[x]+=siz[y];
        return true;
    }
    ll size(ll x){
        return siz[root(x)];
    }
};
int main(){
    ll n,m;
    cin >> n >> m;
    vector<ll>u(m),v(m);
    ll ans=0;
    unionfind uf(n);
    vector<ll>memo(n,0);
    for (ll i = 0; i < m; i++)
    {
        cin >> u[i] >> v[i];
        u[i]--,v[i]--;
    }
    reverse(u.begin(),u.end());
    reverse(v.begin(),v.end());
    for (ll i = 0; i < m; i++)
    {
        ll x=max(memo[uf.root(u[i])],memo[uf.root(v[i])]);
        memo[uf.root(u[i])]=0;
        memo[uf.root(v[i])]=0;
        uf.unite(u[i],v[i]);
        memo[uf.root(u[i])]=x+1;
    }
    
    for (ll i = 0; i < memo.size(); i++)
    {
        ans+=memo[i];
    }
    cout << ans << endl;
}
0