//#include #include //#include using namespace std; //using namespace atcoder; typedef long long ll; typedef unsigned long long ull; typedef pair p; const ll INF = 1e9; const ll LINF = ll(1e18); const ll MOD = 1000000007; const ll dx[4] = {0, 1, 0, -1}, dy[4] = {-1, 0, 1, 0}; const ll Dx[8] = {0, 1, 1, 1, 0, -1, -1, -1}, Dy[8] = {-1, -1, 0, 1, 1, 1, 0, -1}; #define yes cout << "Yes" << endl #define YES cout << "YES" << endl #define no cout << "No" << endl #define NO cout << "NO" << endl #define rep(i, n) for (ll i = 0; i < n; i++) #define FOR(i, m, n) for (ll i = m; i < n; i++) #define ALL(v) v.begin(), v.end() #define debug(v) \ cout << #v << ":"; \ for (auto x : v) \ { \ cout << x << ' '; \ } \ cout << endl; template bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; } template bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; } //cout< par; // sizes[i]:根ノードiの木に含まれるデータの数。iが根ノードでない場合は無意味な値となる vector sizes; vector cost; UnionFind(ll n) : par(n), sizes(n, 1), cost(n, 0) { // 最初は全てのデータiがグループiに存在するものとして初期化 rep(i, n) par[i] = i; } // データxが属する木の根を得る ll find(ll x) { if (x == par[x]) return x; return find(par[x]); // 根を張り替えながら再帰的に根ノードを探す } // 2つのデータx, yが属する木をマージする void unite(ll x, ll y) { // データの根ノードを得る x = find(x); y = find(y); // 既に同じ木に属しているならマージしない if (x == y) return; // xの木がyの木より大きくなるようにする if (sizes[x] < sizes[y]) swap(x, y); // xがyの親になるように連結する par[y] = x; cost[y]-=cost[x]; sizes[x] += sizes[y]; // sizes[y] = 0; // sizes[y]は無意味な値となるので0を入れておいてもよい } // 2つのデータx, yが属する木が同じならtrueを返す bool same(ll x, ll y) { return find(x) == find(y); } // データxが含まれる木の大きさを返す ll size(ll x) { return sizes[find(x)]; } ll cost_out(ll x, ll c) { //cout<> n >> q; UnionFind uf(n); rep(i, q) { ll t; cin >> t; ll a, b; cin >> a >> b; a--; if (t == 1) { b--; uf.unite(a, b); } else if (t == 2) { ll pa = uf.find(a); uf.cost[pa] += b; } else { //debug(uf.cost) cout << uf.cost_out(a, 0) << "\n"; } } }