結果
問題 | No.1054 Union add query |
ユーザー | htensai |
提出日時 | 2020-06-04 14:31:48 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,171 bytes |
コンパイル時間 | 3,550 ms |
コンパイル使用メモリ | 86,312 KB |
実行使用メモリ | 83,260 KB |
最終ジャッジ日時 | 2024-05-06 17:10:15 |
合計ジャッジ時間 | 13,127 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
61,144 KB |
testcase_01 | AC | 136 ms
54,240 KB |
testcase_02 | AC | 126 ms
53,924 KB |
testcase_03 | AC | 1,778 ms
72,044 KB |
testcase_04 | AC | 1,731 ms
73,796 KB |
testcase_05 | AC | 1,685 ms
71,780 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
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(); if (type == 1) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; uft.unite(a, b); } else if (type == 2) { int a = sc.nextInt() - 1; int b = sc.nextInt(); uft.add(a, b); } else { sb.append(uft.get(sc.nextInt() - 1)).append("\n"); sc.nextInt(); } } System.out.print(sb); } static class UnionFindTree { int[] parents; int[] points; public UnionFindTree(int size) { parents = 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; } 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; } parents[xx] = yy; points[xx] -= points[yy]; } 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); } } }