結果

問題 No.1390 Get together
ユーザー misora192misora192
提出日時 2021-02-14 21:15:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 1,858 bytes
コンパイル時間 1,744 ms
コンパイル使用メモリ 188,480 KB
実行使用メモリ 28,544 KB
最終ジャッジ日時 2024-07-22 08:22:07
合計ジャッジ時間 8,242 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 160 ms
18,688 KB
testcase_17 AC 186 ms
13,448 KB
testcase_18 AC 196 ms
26,624 KB
testcase_19 AC 383 ms
27,648 KB
testcase_20 AC 311 ms
16,384 KB
testcase_21 AC 310 ms
16,768 KB
testcase_22 AC 297 ms
25,856 KB
testcase_23 AC 303 ms
25,728 KB
testcase_24 AC 296 ms
25,856 KB
testcase_25 AC 406 ms
28,544 KB
testcase_26 AC 390 ms
28,544 KB
testcase_27 AC 394 ms
28,544 KB
testcase_28 AC 383 ms
28,544 KB
testcase_29 AC 382 ms
28,416 KB
testcase_30 AC 387 ms
28,544 KB
testcase_31 AC 406 ms
28,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)

using namespace std;

typedef long long ll;

template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }

// union-find tree with size(struct)
struct UnionFind{
    vector<int> par; // 親ノード
    vector<int> rank; // ランク
	vector<int> size; // 連結成分のサイズ

    UnionFind(int n = 1) {
        init(n);
    }

    void init(int n = 1) {
        par.resize(n);
		rank.resize(n);
		size.resize(n);
        for (int i = 0; i < n; ++i){
			par[i] = i;
			rank[i] = 0;
			size[i] = 1;
		}
    }

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

        int r = find(par[x]);
        return par[x] = r;
    }

    bool issame(int x, int y) {
        return find(x) == find(y);
    }

    bool unite(int x, int y) {
	    x = find(x);
		y = find(y);
	    if (x == y) return false;

	    if (rank[x] < rank[y]) swap(x, y);
	    if (rank[x] == rank[y]) ++rank[x];
	    par[y] = x;
		size[x] += size[y];
	    return true;
    }

	int getSize(int x){
		return size[find(x)];
	}

	int getRank(int x){
		return rank[find(x)];
	}
};


int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);

	int N, M;
	cin >> N >> M;

	vector<int> b(N), c(N);
	rep(i, N) {
		cin >> b[i] >> c[i];
		b[i]--;
		c[i]--;
	}


	int col = 0;
	map<int, int> cmap;
	rep(i, N){
		if(cmap.count(c[i]) == 0){
			cmap[c[i]] = col;
			col++;
		}
	}

	UnionFind uf(col);
	map<int, vector<int>> bmap;
	rep(i, N){
		if(bmap.count(b[i]) == 0){
			bmap[b[i]].push_back(cmap[c[i]]);
		}else{
			uf.unite(bmap[b[i]].back(), cmap[c[i]]);
			bmap[b[i]].push_back(cmap[c[i]]);
		}
	}

	int box = bmap.size();
	set<int> st;
	rep(i, col) st.insert(uf.find(i));

	cout << box - st.size() << endl;
}
0