結果

問題 No.1390 Get together
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2021-02-12 21:52:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 1,223 bytes
コンパイル時間 1,797 ms
コンパイル使用メモリ 170,348 KB
実行使用メモリ 4,880 KB
最終ジャッジ日時 2023-09-27 03:44:57
合計ジャッジ時間 5,348 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,384 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 4 ms
4,380 KB
testcase_04 AC 3 ms
4,376 KB
testcase_05 AC 4 ms
4,376 KB
testcase_06 AC 3 ms
4,376 KB
testcase_07 AC 3 ms
4,380 KB
testcase_08 AC 3 ms
4,376 KB
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 109 ms
4,568 KB
testcase_17 AC 111 ms
4,636 KB
testcase_18 AC 116 ms
4,604 KB
testcase_19 AC 122 ms
4,876 KB
testcase_20 AC 121 ms
4,560 KB
testcase_21 AC 120 ms
4,568 KB
testcase_22 AC 117 ms
4,640 KB
testcase_23 AC 122 ms
4,564 KB
testcase_24 AC 127 ms
4,880 KB
testcase_25 AC 122 ms
4,684 KB
testcase_26 AC 121 ms
4,720 KB
testcase_27 AC 121 ms
4,724 KB
testcase_28 AC 120 ms
4,556 KB
testcase_29 AC 120 ms
4,568 KB
testcase_30 AC 120 ms
4,632 KB
testcase_31 AC 119 ms
4,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2021.02.12 21:52:18
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;


class UnionFind {
private:
    vector<int> par;
public:
    UnionFind(int n) {
        par.resize(n, -1);
    }
    int root(int x) {
        if (par[x] < 0) return x;
        return par[x] = root(par[x]);
    }
    bool unite(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        if (rx == ry) return false;
        if (size(rx) < size(ry)) swap(rx, ry);
        par[rx] += par[ry];
        par[ry] = rx;
        return true;
    }
    bool same(int x, int y) {
        int rx = root(x);
        int ry = root(y);
        return rx == ry;
    }
    int size(int x) {
        return -par[root(x)];
    }
};
int main() {
    int n,m;cin >> n >> m;
    UnionFind uf(m);
    vector<int> a(n,-1);
    for (int i = 0; i < n; i++) {
        int b,c;cin >> b >> c;
        b--;c--;
        if (a[c] != -1) {
            uf.unite(a[c],b);
        }
        a[c] = b;
    }
    ll total = 0;
    for (int i = 0; i < m; i++) {
        if (uf.root(i) == i) {
            total += uf.size(i) - 1;
        }
    }
    cout << total << endl;
    return 0;
}
0