結果
問題 | No.1054 Union add query |
ユーザー | htensai |
提出日時 | 2020-05-26 13:03:24 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,969 ms / 2,000 ms |
コード長 | 1,854 bytes |
コンパイル時間 | 2,300 ms |
コンパイル使用メモリ | 77,608 KB |
実行使用メモリ | 75,776 KB |
最終ジャッジ日時 | 2024-10-13 02:38:48 |
合計ジャッジ時間 | 19,267 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
53,816 KB |
testcase_01 | AC | 143 ms
53,976 KB |
testcase_02 | AC | 133 ms
53,912 KB |
testcase_03 | AC | 1,776 ms
73,616 KB |
testcase_04 | AC | 1,932 ms
75,776 KB |
testcase_05 | AC | 1,835 ms
71,536 KB |
testcase_06 | AC | 1,933 ms
73,964 KB |
testcase_07 | AC | 1,771 ms
62,752 KB |
testcase_08 | AC | 1,870 ms
71,964 KB |
testcase_09 | AC | 1,969 ms
65,620 KB |
testcase_10 | AC | 1,490 ms
63,976 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int q = sc.nextInt(); UnionFindTree uft = new UnionFindTree(n); StringBuilder sb = new StringBuilder(); for (int i = 0; i < q; i++) { int type = sc.nextInt(); int a = sc.nextInt(); int b = sc.nextInt(); 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[] ranks; int[] points; public UnionFindTree(int size) { parents = new int[size]; ranks = new int[size]; points = new int[size]; for (int i = 0; i < size; i++) { parents[i] = i; } } public int find(int x) { if (parents[x] == x) { return x; } else { return find(parents[x]); } } public void unite(int x, int y) { int xx = find(x); int yy = find(y); if (xx == yy) { return; } if (ranks[xx] < ranks[yy]) { parents[xx] = yy; points[xx] -= points[yy]; ranks[yy] = Math.max(ranks[yy], ranks[xx] + 1); } else { parents[yy] = xx; points[yy] -= points[xx]; ranks[xx] = Math.max(ranks[xx], ranks[yy] + 1); } } public void add(int x, int value) { points[find(x)] += value; } public int get(int x) { if (parents[x] == x) { return points[x]; } else { return points[x] + get(parents[x]); } } } }