結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー erbowlerbowl
提出日時 2023-08-04 23:49:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,985 bytes
コンパイル時間 2,142 ms
コンパイル使用メモリ 214,500 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-05-05 01:42:04
合計ジャッジ時間 4,073 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 44 ms
5,376 KB
testcase_05 AC 82 ms
5,376 KB
testcase_06 AC 88 ms
5,376 KB
testcase_07 AC 53 ms
5,376 KB
testcase_08 AC 65 ms
5,376 KB
testcase_09 AC 90 ms
5,376 KB
testcase_10 AC 87 ms
5,376 KB
testcase_11 AC 68 ms
5,376 KB
testcase_12 AC 93 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 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 5 ms
8,576 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,888 KB
testcase_22 AC 5 ms
7,808 KB
testcase_23 AC 5 ms
7,808 KB
testcase_24 AC 5 ms
7,040 KB
testcase_25 AC 4 ms
6,656 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 7 ms
8,320 KB
testcase_28 AC 6 ms
7,296 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 6 ms
8,448 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;

#include <bits/stdc++.h>
using namespace std;
#define int long long

// Union-Find
struct UnionFind {
    // core member
    vector<int> par;

    // constructor
    UnionFind() { }
    UnionFind(int n) : par(n, -1) { }
    void init(int n) { par.assign(n, -1); }
    
    // core methods
    int root(int x) {
        if (par[x] < 0) return x;
        else return par[x] = root(par[x]);
    }
    
    bool same(int x, int y) {
        return root(x) == root(y);
    }
    
    bool merge(int x, int y) {
        x = root(x), y = root(y);
        if (x == y) return false;
        if (par[x] > par[y]) swap(x, y); // merge technique
        par[x] += par[y];
        par[y] = x;
        return true;
    }
    
    int size(int x) {
        return -par[root(x)];
    }
    
    // debug
    friend ostream& operator << (ostream &s, UnionFind uf) {
        map<int, vector<int>> groups;
        for (int i = 0; i < uf.par.size(); ++i) {
            int r = uf.root(i);
            groups[r].push_back(i);
        }
        for (const auto &it : groups) {
            s << "group: ";
            for (auto v : it.second) s << v << " ";
            s << endl;
        }
        return s;
    }
};
signed main(){
    ll n,m;
    std::cin >> n>>m;
    vector<ll> nyu(n),shu(n);
    UnionFind uf(n);
    vector<ll> jiko(n);
    for (int i = 0; i < m; i++) {
        ll u,v;
        
        std::cin >> u>>v;
        u--;v--;
        uf.merge(u,v);
        shu[u]++;
        nyu[v]++;
        if(u==v){
            jiko[u]++;
        }
    }
    ll p = 0;
    set<ll> uni;
    set<ll> pr;
    ll cnt = 0;
    for (int i = 0; i < n; i++) {
        if(shu[i]-nyu[i]>0){
            p += shu[i]-nyu[i];
            uni.insert(uf.root(i));
            pr.insert(uf.root(i));
        }
        if(shu[i]==nyu[i]&&shu[i]!=0){
            uni.insert(uf.root(i));
        }
    }
    std::cout << max(0ll,p-(ll)pr.size())+uni.size()-1 << std::endl;
};
0