結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー PAKACHUPAKACHU
提出日時 2023-08-05 00:50:48
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 2,980 bytes
コンパイル時間 3,491 ms
コンパイル使用メモリ 164,716 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-05-05 01:42:43
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 80 ms
5,376 KB
testcase_06 AC 84 ms
5,376 KB
testcase_07 AC 50 ms
5,376 KB
testcase_08 AC 58 ms
5,376 KB
testcase_09 AC 89 ms
5,376 KB
testcase_10 AC 85 ms
5,376 KB
testcase_11 AC 63 ms
5,376 KB
testcase_12 AC 88 ms
5,376 KB
testcase_13 AC 64 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 5 ms
6,528 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 4 ms
6,144 KB
testcase_23 AC 4 ms
6,016 KB
testcase_24 AC 4 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 6 ms
6,272 KB
testcase_28 AC 5 ms
5,760 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 6 ms
6,272 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;
typedef long double ld;
int dx[8] = { 1, 0, -1, 0, 1, 1, -1, -1 }, dy[8] = { 0, 1, 0, -1, 1, -1, 1, -1 };
const long long mod = 998244353;
const ll inf = 1LL << 60;
const int INF = 5e8;

struct dsu {
public:
    dsu()
        : _n(0)
    {
    }
    dsu(int n)
        : _n(n)
        , parent_or_size(n, -1)
    {
    }

    int merge(int a, int b)
    {
        assert(0 <= a && a < _n);
        assert(0 <= b && b < _n);
        int x = leader(a), y = leader(b);
        if (x == y)
            return x;
        if (-parent_or_size[x] < -parent_or_size[y])
            std::swap(x, y);
        parent_or_size[x] += parent_or_size[y];
        parent_or_size[y] = x;
        return x;
    }

    bool same(int a, int b)
    {
        assert(0 <= a && a < _n);
        assert(0 <= b && b < _n);
        return leader(a) == leader(b);
    }
    // 頂点aの属する連結成分の代表元を返す
    int leader(int a)
    {
        assert(0 <= a && a < _n);
        if (parent_or_size[a] < 0)
            return a;
        return parent_or_size[a] = leader(parent_or_size[a]);
    }

    // 頂点aの属する連結成分のサイズを返す
    int size(int a)
    {
        assert(0 <= a && a < _n);
        return -parent_or_size[leader(a)];
    }
    // グラフを連結成分に分け、その情報を返します。
    // 返り値は「「一つの連結成分の頂点番号のリスト」のリスト」です。
    //(内側外側限らず)vector内でどの順番で頂点が格納されているかは未定義です。
    std::vector<std::vector<int>> groups()
    {
        std::vector<int> leader_buf(_n), group_size(_n);
        for (int i = 0; i < _n; i++) {
            leader_buf[i] = leader(i);
            group_size[leader_buf[i]]++;
        }
        std::vector<std::vector<int>> result(_n);
        for (int i = 0; i < _n; i++) {
            result[i].reserve(group_size[i]);
        }
        for (int i = 0; i < _n; i++) {
            result[leader_buf[i]].push_back(i);
        }
        result.erase(
            std::remove_if(result.begin(), result.end(),
                [&](const std::vector<int>& v) { return v.empty(); }),
            result.end());
        return result;
    }

private:
    int _n;
    // root node: -1 * component size
    // otherwise: parent
    std::vector<int> parent_or_size;
};

int main()
{
    int n, m;
    cin >> n >> m;

    dsu uf(n);
    vector<int> in(n), out(n);
    for (int i = 0; i < m; i++) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        in[v]++;
        out[u]++;
        uf.merge(u, v);
    }

    vector<ll> c(n);
    for (int i = 0; i < n; i++)
        c[uf.leader(i)] += max(0LL,(ll)out[i] - in[i]);

    ll ans = 0;
    for (int i = 0; i < n; i++)
      if(i==uf.leader(i) and in[i]+out[i])ans += max(1LL,c[i]);

    cout << max(0LL, ans - 1) << endl;
}
0