結果

問題 No.1054 Union add query
ユーザー QCFiumQCFium
提出日時 2019-11-11 18:21:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 1,335 bytes
コンパイル時間 1,797 ms
コンパイル使用メモリ 169,908 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-05-05 22:34:07
合計ジャッジ時間 3,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 62 ms
5,376 KB
testcase_04 AC 116 ms
7,424 KB
testcase_05 AC 59 ms
5,376 KB
testcase_06 AC 65 ms
5,376 KB
testcase_07 AC 50 ms
5,376 KB
testcase_08 AC 57 ms
5,376 KB
testcase_09 AC 114 ms
7,424 KB
testcase_10 AC 30 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#ifdef WIN32
#define getchar_fast _getchar_nolock
#else
#define getchar_fast getchar_unlocked
#endif
int ri() {
	int r = 0, c, s = 0;
	for (;;) {
		c = getchar();
		if (c == '-') {
			s = 1;
			break;
		}
		if (c >= '0' && c <= '9') {
			r = c - '0';
			break;
		}
	}
	for (;;) {
		c = getchar();
		if (c < '0' || c > '9') break;
		r = r * 10 + c - '0';
	}
	return s ? -r : r;
}

struct UnionFind {
	std::vector<int> parent; // -size if it's root
	std::vector<int> plus;
	UnionFind (int n) : parent(n, -1), plus(n) {}
	std::pair<int, int> root(int i) {
		if (parent[i] < 0) return {i, plus[i]};
		auto tmp = root(parent[i]);
		plus[i] += tmp.second - plus[tmp.first];
		return {parent[i] = tmp.first, plus[tmp.first] + plus[i]};
	}
	void add_union(int i, int val) { plus[root(i).first] += val; }
	int get(int i) { return root(i).second; }
	void unite(int i, int j) {
		i = root(i).first;
		j = root(j).first;
		if (i == j) return;
		if (parent[i] > parent[j]) std::swap(i, j);
		parent[i] += parent[j];
		parent[j] = i;
		plus[j] -= plus[i];
	}
};


int main() {
	int n = ri();
	int q = ri();
	UnionFind uni(n);
	for (int i = 0; i < q; i++) {
		int t = ri(), a = ri() - 1, b = ri();
		if (t == 1) uni.unite(a, b - 1);
		else if (t == 2) uni.add_union(a, b);
		else printf("%d\n", uni.get(a));
	}
	return 0;
}
0