結果
問題 | No.1054 Union add query |
ユーザー | htensai |
提出日時 | 2020-06-04 14:47:15 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 681 ms / 2,000 ms |
コード長 | 2,608 bytes |
コンパイル時間 | 2,406 ms |
コンパイル使用メモリ | 80,368 KB |
実行使用メモリ | 67,872 KB |
最終ジャッジ日時 | 2024-05-06 17:49:15 |
合計ジャッジ時間 | 9,201 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
50,320 KB |
testcase_01 | AC | 52 ms
50,216 KB |
testcase_02 | AC | 50 ms
49,940 KB |
testcase_03 | AC | 681 ms
65,412 KB |
testcase_04 | AC | 671 ms
67,872 KB |
testcase_05 | AC | 662 ms
65,056 KB |
testcase_06 | AC | 634 ms
64,512 KB |
testcase_07 | AC | 614 ms
64,416 KB |
testcase_08 | AC | 644 ms
62,468 KB |
testcase_09 | AC | 630 ms
65,328 KB |
testcase_10 | AC | 496 ms
63,400 KB |
ソースコード
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[] points; int[] rank; public UnionFindTree(int size) { parents = new int[size]; points = new int[size]; rank = new int[size]; for (int i = 0; i < size; i++) { parents[i] = i; } } public int find(int x) { if (parents[x] == x) { return x; } int point = getPoint(parents[x]); parents[x] = find(parents[x]); points[x] = points[x] + point - points[parents[x]]; return parents[x]; } public int getPoint(int x) { if (parents[x] == x) { return points[x]; } else { return getPoint(parents[x]) + points[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 (rank[xx] < rank[yy]) { parents[xx] = yy; points[xx] -= points[yy]; rank[yy] = Math.max(rank[yy], rank[xx] + 1); } else { parents[yy] = xx; points[yy] -= points[xx]; rank[xx] = Math.max(rank[xx], rank[yy] + 1); } } public void add(int x, int value) { points[find(x)] += value; } public int get(int x) { int xx = find(x); if (xx == x) { return points[x]; } else { return points[x] + points[xx]; } } public String toString() { return Arrays.toString(parents) + Arrays.toString(points); } } }