結果

問題 No.1054 Union add query
ユーザー pockynypockyny
提出日時 2022-09-22 14:42:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 741 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 43,004 KB
最終ジャッジ日時 2024-06-01 17:55:09
合計ジャッジ時間 4,521 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
18,660 KB
testcase_01 AC 6 ms
17,684 KB
testcase_02 AC 7 ms
17,864 KB
testcase_03 AC 194 ms
25,748 KB
testcase_04 AC 344 ms
43,004 KB
testcase_05 AC 154 ms
20,740 KB
testcase_06 AC 167 ms
28,796 KB
testcase_07 AC 146 ms
27,924 KB
testcase_08 AC 167 ms
27,344 KB
testcase_09 AC 263 ms
40,400 KB
testcase_10 AC 136 ms
37,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;
typedef long long ll;
vector<int> uf[500010];
ll w[500010] = {},par[500010],parw[500010] = {};
int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int i,n,q; cin >> n >> q;
    for(i=0;i<n;i++){
        par[i] = i; uf[i].push_back(i);
    }
    for(i=0;i<q;i++){
        int t,a,b; cin >> t >> a >> b;
        if(t==1){
            a--; b--;
            a = par[a]; b = par[b];
            if(a==b) continue;
            if(uf[a].size()<uf[b].size()) swap(a,b);
            for(int x:uf[b]){
                w[x] -= parw[a];
                w[x] += parw[b];
                par[x] = a;
            }
            uf[a].insert(uf[a].end(),uf[b].begin(),uf[b].end());
            uf[b].clear();
        }
        if(t==2){
            a--; parw[par[a]] += b;
        }
        if(t==3){
            a--;
            cout << parw[par[a]] + w[a] << "\n";
        }
    }
}
0