結果
問題 | No.2290 UnUnion Find |
ユーザー | tenten |
提出日時 | 2024-04-03 11:11:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 910 ms / 2,000 ms |
コード長 | 2,661 bytes |
コンパイル時間 | 2,605 ms |
コンパイル使用メモリ | 79,636 KB |
実行使用メモリ | 78,656 KB |
最終ジャッジ日時 | 2024-09-30 23:43:02 |
合計ジャッジ時間 | 42,915 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
50,200 KB |
testcase_01 | AC | 61 ms
50,348 KB |
testcase_02 | AC | 425 ms
59,548 KB |
testcase_03 | AC | 684 ms
65,568 KB |
testcase_04 | AC | 716 ms
71,380 KB |
testcase_05 | AC | 704 ms
69,960 KB |
testcase_06 | AC | 716 ms
72,472 KB |
testcase_07 | AC | 707 ms
69,056 KB |
testcase_08 | AC | 719 ms
71,644 KB |
testcase_09 | AC | 704 ms
68,208 KB |
testcase_10 | AC | 725 ms
70,180 KB |
testcase_11 | AC | 705 ms
70,952 KB |
testcase_12 | AC | 714 ms
70,332 KB |
testcase_13 | AC | 709 ms
70,304 KB |
testcase_14 | AC | 727 ms
70,368 KB |
testcase_15 | AC | 712 ms
72,376 KB |
testcase_16 | AC | 723 ms
69,436 KB |
testcase_17 | AC | 710 ms
72,864 KB |
testcase_18 | AC | 701 ms
71,796 KB |
testcase_19 | AC | 814 ms
66,488 KB |
testcase_20 | AC | 902 ms
78,148 KB |
testcase_21 | AC | 466 ms
60,816 KB |
testcase_22 | AC | 627 ms
63,176 KB |
testcase_23 | AC | 597 ms
63,216 KB |
testcase_24 | AC | 864 ms
74,112 KB |
testcase_25 | AC | 603 ms
63,216 KB |
testcase_26 | AC | 895 ms
77,640 KB |
testcase_27 | AC | 879 ms
76,108 KB |
testcase_28 | AC | 726 ms
65,324 KB |
testcase_29 | AC | 854 ms
68,728 KB |
testcase_30 | AC | 502 ms
63,088 KB |
testcase_31 | AC | 833 ms
66,936 KB |
testcase_32 | AC | 595 ms
62,992 KB |
testcase_33 | AC | 736 ms
65,440 KB |
testcase_34 | AC | 910 ms
78,656 KB |
testcase_35 | AC | 894 ms
75,268 KB |
testcase_36 | AC | 598 ms
63,372 KB |
testcase_37 | AC | 697 ms
65,312 KB |
testcase_38 | AC | 603 ms
63,136 KB |
testcase_39 | AC | 626 ms
63,124 KB |
testcase_40 | AC | 891 ms
75,960 KB |
testcase_41 | AC | 539 ms
63,100 KB |
testcase_42 | AC | 820 ms
66,336 KB |
testcase_43 | AC | 767 ms
65,956 KB |
testcase_44 | AC | 725 ms
71,908 KB |
testcase_45 | AC | 762 ms
65,908 KB |
testcase_46 | AC | 796 ms
66,172 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); UnionFindTree uft = new UnionFindTree(n); int q = sc.nextInt(); StringBuilder sb = new StringBuilder(); while (q-- > 0) { if (sc.nextInt() == 1) { uft.unite(sc.nextInt() - 1, sc.nextInt() - 1); } else { sb.append(uft.getAnother(sc.nextInt() - 1) + 1).append("\n"); } } System.out.print(sb); } static class UnionFindTree { int[] parents; TreeSet<Integer> exist = new TreeSet<>(); public UnionFindTree(int size) { parents = new int[size]; for (int i = 0; i < size; i++) { parents[i] = i; exist.add(i); } } public int find(int x) { if (x == parents[x]) { return x; } else { return parents[x] = find(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) { parents[xx] = yy; exist.remove(xx); } } public int getAnother(int x) { if (exist.size() == 1) { return -2; } else if (same(x, exist.last())) { return exist.first(); } else { return exist.last(); } } } } class Scanner { BufferedReader br; StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() { try { br = new BufferedReader(new InputStreamReader(System.in)); } catch (Exception e) { } } public int nextInt() { return Integer.parseInt(next()); } public long nextLong() { return Long.parseLong(next()); } public double nextDouble() { return Double.parseDouble(next()); } public String next() { try { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } } catch (Exception e) { e.printStackTrace(); } finally { return st.nextToken(); } } }