結果

問題 No.1054 Union add query
ユーザー omochana2omochana2
提出日時 2020-05-17 19:31:42
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 3,062 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 166,160 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-04-08 12:16:10
合計ジャッジ時間 5,673 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 2 ms
6,548 KB
testcase_03 AC 182 ms
6,548 KB
testcase_04 AC 210 ms
11,392 KB
testcase_05 AC 158 ms
6,548 KB
testcase_06 AC 154 ms
6,784 KB
testcase_07 AC 127 ms
6,784 KB
testcase_08 AC 148 ms
6,784 KB
testcase_09 AC 191 ms
11,392 KB
testcase_10 AC 108 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define ADD(a, b) a = (a + ll(b)) % mod
#define MUL(a, b) a = (a * ll(b)) % mod
#define MAX(a, b) a = max(a, b)
#define MIN(a, b) a = min(a, b)
#define rep(i, a, b) for(int i = int(a); i < int(b); i++)
#define rer(i, a, b) for(int i = int(a) - 1; i >= int(b); i--)
#define all(a) (a).begin(), (a).end()
#define sz(v) (int)(v).size()
#define pb push_back
#define sec second
#define fst first
#define debug(fmt, ...) Debug(__LINE__, ":", fmt, ##__VA_ARGS__)
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef pair<int, pi> ppi;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<vl> mat;
typedef complex<double> comp;
void Debug() {cerr << '\n'; }
template<class FIRST, class... REST>void Debug(FIRST arg, REST... rest){
	cerr<<arg<<" ";Debug(rest...);}
template<class T>ostream& operator<<(ostream& out,const vector<T>& v) {
	out<<"[";if(!v.empty()){rep(i,0,sz(v)-1)out<<v[i]<<", ";out<<v.back();}out<<"]";return out;}
template<class S, class T>ostream& operator<<(ostream& out,const pair<S, T>& v){
	out<<"("<<v.first<<", "<<v.second<<")";return out;}
const int MAX_N = 500010;
const int MAX_V = 100010;
const double eps = 1e-6;
const ll mod = 1000000007;
const int inf = (1 << 30) - 1;
const ll linf = 1LL << 60;
const double PI = 3.14159265358979323846;
mt19937 rng; //use it by rng() % mod, shuffle(all(vec), rng)
///////////////////////////////////////////////////////////////////////////////////////////////////

struct unionfind {
	int n;
	vi par, ran;
	vl val;
	void init(int _n) {
		n = _n;
		par.resize(n); ran.resize(n);
		val.resize(n);
		rep(i, 0, n) {
			par[i] = i;
			ran[i] = 0;
			val[i] = 0;
		}
	}
	int find(int v) {
		if(par[v] == v) return v;
		else return find(par[v]);
	}
	void add(int a, ll v) {
		int pa = find(a);
		val[pa] += v;
	}
	ll get(int v) {
		if(par[v] == v) return val[v];
		else return val[v] + get(par[v]);
	}
	void unite(int a, int b) {
		int pa = find(a);
		int pb = find(b);
		if(pa == pb) return;
		if(ran[pa] > ran[pb]) {
			val[pb] -= val[pa];
			par[pb] = pa;
		}
		else {
			if(ran[pa] == ran[pb]) ran[pb]++;
			val[pa] -= val[pb];
			par[pa] = pb;
		}
	}
};

int N, Q;
unionfind U;

void solve() {
	cin >> N >> Q;
	U.init(N);
	while(Q--) {
		int t, a, b; cin >> t >> a >> b;
		if(t == 1) {
			a--; b--;
			U.unite(a, b);
		}
		else if(t == 2) {
			a--;
			U.add(a, b);
		}
		else {
			a--;
			cout << U.get(a) << "\n";
		}
		// debug(U.par, U.val);
	}
}

uint32_t rd() {
	uint32_t res;
#ifdef __MINGW32__
	asm volatile("rdrand %0" :"=a"(res) ::"cc");
#else
	res = std::random_device()();
#endif
	return res;
}

int main() {
#ifndef LOCAL
	ios::sync_with_stdio(false);
    cin.tie(0);
#endif
    cout << fixed;
	cout.precision(20);
    cerr << fixed;
	cerr.precision(6);
	rng.seed(rd());
#ifdef LOCAL
	//freopen("in.txt", "wt", stdout); //for tester
	if(!freopen("in.txt", "rt", stdin)) return 1;
#endif	
	solve();
    cerr << "Time: " << 1.0 * clock() / CLOCKS_PER_SEC << " s.\n";
	return 0;
}

0