結果

問題 No.1054 Union add query
ユーザー tentententen
提出日時 2020-08-20 20:39:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 749 ms / 2,000 ms
コード長 2,658 bytes
コンパイル時間 3,060 ms
コンパイル使用メモリ 78,272 KB
実行使用メモリ 56,052 KB
最終ジャッジ日時 2024-04-21 19:16:05
合計ジャッジ時間 10,000 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,828 KB
testcase_01 AC 52 ms
36,952 KB
testcase_02 AC 51 ms
36,924 KB
testcase_03 AC 742 ms
52,600 KB
testcase_04 AC 749 ms
56,052 KB
testcase_05 AC 697 ms
51,904 KB
testcase_06 AC 733 ms
52,596 KB
testcase_07 AC 699 ms
53,584 KB
testcase_08 AC 726 ms
52,240 KB
testcase_09 AC 724 ms
55,500 KB
testcase_10 AC 526 ms
51,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        int q = Integer.parseInt(first[1]);
        UnionFindTree uft = new UnionFindTree(n);
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            String[] line = br.readLine().split(" ", 3);
            int type = Integer.parseInt(line[0]);
            int a = Integer.parseInt(line[1]);
            int b = Integer.parseInt(line[2]);
            if (type == 1) {
                uft.unite(a - 1, b - 1);
            } else if (type == 2) {
                uft.add(a - 1, b);
            } else {
                sb.append(uft.get(a - 1)).append("\n");
            }
        }
        System.out.print(sb);
    }
    
    static class UnionFindTree {
        int[] parents;
        int[] depth;
        int[] values;
        
        public UnionFindTree(int size) {
            parents = new int[size];
            depth = new int[size];
            values = new int[size];
            for (int i = 0; i < size; i++) {
                parents[i] = i;
                depth[i] = 1;
            }
        }
        
        public int find(int x) {
            if (x == parents[x]) {
                return x;
            } else {
                int tmp = parents[x];
                int ans = find(parents[x]);
                if (tmp != parents[tmp]) {
                    values[x] += values[tmp];
                }
                parents[x] = ans;
                return ans;
            }
        }
        
        public void add(int x, int y) {
            values[find(x)] += y;
        }
        
        public int get(int x) {
            if (x == parents[x]) {
                return values[x];
            } else {
                return values[x] + get(parents[x]);
            }
        }
        
        public boolean same(int x, int y) {
            return find(x) == find(y);
        }
        
        public void unite(int x, int y) {
            int xx = find(x);
            int yy = find(y);
            if (xx == yy) {
                return;
            }
            if (depth[xx] >= depth[yy]) {
                parents[yy] = xx;
                depth[xx] += depth[yy];
                values[yy] -= values[xx];
            } else {
                parents[xx] = yy;
                depth[yy] += depth[xx];
                values[xx] -= values[yy];
            }
        }
    }
} 
0