結果

問題 No.1390 Get together
ユーザー 夜
提出日時 2021-02-12 22:08:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,120 bytes
コンパイル時間 977 ms
コンパイル使用メモリ 100,028 KB
実行使用メモリ 9,196 KB
最終ジャッジ日時 2024-07-19 22:01:41
合計ジャッジ時間 4,756 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
vector<pair<int, int>> vec;
int par[200020];
int siz[200020];
int bo[200020] = { false };
int root(int x) {
	if (par[x] == x) {
		return x;
	}
	else {
		return par[x] = root(par[x]);
	}
}
int main() {
	int n, m;
	int x, y;
	cin >> n >> m;
	for (int i = 0; i < m; i++) {
		par[i] = i;
		siz[i] = 1;
	}
	for (int i = 0; i < n; i++) {
		int b, c;
		cin >> b >> c;
		vec.emplace_back(make_pair(c, b--));
	}
	sort(vec.begin(), vec.end());
	for (int i = 1; i < n; i++) {
		if (vec[i - 1].first == vec[i].first) {
			x = root(vec[i-1].second);
			y = root(vec[i].second);
			if (x != y) {
				par[x] = y;
				int mem = siz[x];
				siz[x] += siz[y];
				siz[y] += mem;
			}
		}
	}
	int ans = 0;
	for (int i = 0; i < m; i++) {
		if (!bo[root(i)]) {
			ans += siz[root(i)] - 1;
			bo[root(i)] = true;
		}
	}
	cout << ans << endl;
	return 0;
}
0