結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-06 02:49:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 1,836 bytes
コンパイル時間 2,462 ms
コンパイル使用メモリ 206,852 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-05-05 01:47:47
合計ジャッジ時間 4,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 41 ms
5,376 KB
testcase_05 AC 78 ms
5,376 KB
testcase_06 AC 85 ms
5,376 KB
testcase_07 AC 52 ms
5,376 KB
testcase_08 AC 58 ms
5,376 KB
testcase_09 AC 88 ms
5,376 KB
testcase_10 AC 88 ms
5,376 KB
testcase_11 AC 66 ms
5,376 KB
testcase_12 AC 87 ms
5,376 KB
testcase_13 AC 60 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 19 ms
15,616 KB
testcase_20 AC 6 ms
5,504 KB
testcase_21 AC 10 ms
9,472 KB
testcase_22 AC 16 ms
14,208 KB
testcase_23 AC 16 ms
13,824 KB
testcase_24 AC 13 ms
12,032 KB
testcase_25 AC 12 ms
11,520 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 18 ms
14,848 KB
testcase_28 AC 14 ms
12,416 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 8 ms
8,192 KB
testcase_31 AC 19 ms
15,104 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 8 ms
6,912 KB
testcase_34 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

struct UnionFind {
    int ngroup, N;
    vector<int> par;
    vector<int> siz;

    UnionFind(int _n) : par(_n), siz(_n), N(_n) {
        ngroup = _n;
        for(int i = 0; i < N; i++){
            par[i] = i;
            siz[i] = 1;
        }
    }

    int root(int x) {
        if (par[x] == x) return x;
        return par[x] = root(par[x]);
    }

    int unite(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        if (rx == ry) return rx;
        ngroup--;
        if (siz[rx] > siz[ry]) swap(rx, ry);
        par[rx] = ry;
        siz[ry] += siz[rx];
        return ry;
    }

    bool same(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        return rx == ry;
    }

    int size(int x){
        return siz[root(x)];
    }

    int group_count(){
        return ngroup;
    }

    vector<vector<int>> groups(){
        vector<int> rev(N);
        int nrt=0;
        for (int i=0; i<N; i++){
            if (root(i) == i){
                rev[i] = nrt;
                nrt++;
            }
        }
        vector<vector<int>> res(nrt);
        for (int i=0; i<N; i++){
            res[rev[root(i)]].push_back(i);
        }

        return res;
    }
};

int main(){
 
    int N, M, x, y;
    ll ans=0, cnt;
    cin >> N >> M;
    UnionFind tree(N+1);
    vector<int> in(N+1), out(N+1);
 
    for (int i=0; i<M; i++){
        cin >> x >> y;
        tree.unite(x, y);
        out[x]++;
        in[y]++;
    }
    
    vector<vector<int>> g = tree.groups();
    for (auto &x : g){
        bool f=0;
        cnt = 0;
        for (auto y : x){
            if (in[y] != 0) f=1;
            cnt += abs(in[y]-out[y]);
        }
        ans += max(0LL, cnt/2-1) + f;
    }

    cout << ans-1 << endl;

    return 0;
}
0