結果

問題 No.2290 UnUnion Find
ユーザー prin_kemkemprin_kemkem
提出日時 2023-05-06 11:46:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,918 ms / 2,000 ms
コード長 1,706 bytes
コンパイル時間 3,003 ms
コンパイル使用メモリ 76,956 KB
実行使用メモリ 61,244 KB
最終ジャッジ日時 2024-11-23 20:54:07
合計ジャッジ時間 85,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,188 KB
testcase_01 AC 127 ms
41,164 KB
testcase_02 AC 1,701 ms
57,540 KB
testcase_03 AC 1,629 ms
59,960 KB
testcase_04 AC 1,681 ms
59,664 KB
testcase_05 AC 1,792 ms
60,384 KB
testcase_06 AC 1,683 ms
60,176 KB
testcase_07 AC 1,626 ms
60,396 KB
testcase_08 AC 1,666 ms
59,772 KB
testcase_09 AC 1,607 ms
60,128 KB
testcase_10 AC 1,736 ms
59,968 KB
testcase_11 AC 1,709 ms
60,052 KB
testcase_12 AC 1,715 ms
60,200 KB
testcase_13 AC 1,700 ms
60,160 KB
testcase_14 AC 1,617 ms
60,284 KB
testcase_15 AC 1,694 ms
60,008 KB
testcase_16 AC 1,694 ms
59,632 KB
testcase_17 AC 1,609 ms
60,568 KB
testcase_18 AC 1,647 ms
59,900 KB
testcase_19 AC 1,675 ms
60,112 KB
testcase_20 AC 1,671 ms
61,076 KB
testcase_21 AC 1,832 ms
57,796 KB
testcase_22 AC 1,766 ms
59,620 KB
testcase_23 AC 1,766 ms
59,536 KB
testcase_24 AC 1,703 ms
60,300 KB
testcase_25 AC 1,842 ms
59,188 KB
testcase_26 AC 1,677 ms
60,340 KB
testcase_27 AC 1,662 ms
60,820 KB
testcase_28 AC 1,693 ms
59,740 KB
testcase_29 AC 1,648 ms
60,284 KB
testcase_30 AC 1,918 ms
59,392 KB
testcase_31 AC 1,710 ms
60,404 KB
testcase_32 AC 1,869 ms
59,496 KB
testcase_33 AC 1,723 ms
59,444 KB
testcase_34 AC 1,782 ms
61,244 KB
testcase_35 AC 1,629 ms
60,640 KB
testcase_36 AC 1,823 ms
59,176 KB
testcase_37 AC 1,755 ms
59,508 KB
testcase_38 AC 1,846 ms
59,524 KB
testcase_39 AC 1,756 ms
59,516 KB
testcase_40 AC 1,684 ms
60,568 KB
testcase_41 AC 1,791 ms
59,216 KB
testcase_42 AC 1,700 ms
60,180 KB
testcase_43 AC 1,670 ms
60,168 KB
testcase_44 AC 1,595 ms
59,848 KB
testcase_45 AC 1,675 ms
59,972 KB
testcase_46 AC 1,590 ms
59,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int Q = sc.nextInt();
        UnionFind uf = new UnionFind(N + 1);
        while (Q-- > 0) {
            int q = sc.nextInt();
            if (q == 1) {
                int u = sc.nextInt();
                int v = sc.nextInt();
                uf.unite(u, v);
            } else {
                int v = sc.nextInt();
                int ans = uf.unUnitePoint(v);
                if (ans > N)
                    ans = -1;
                System.out.println(ans);
            }
        }
    }
}

class UnionFind {
    int[] par, unUnite, size;

    UnionFind(int N) {
        par = new int[N];
        unUnite = new int[N];
        size = new int[N];
        Arrays.fill(par, -1);
        Arrays.fill(unUnite, 1);
        Arrays.fill(size, 1);
        unUnite[1] = 2;
    }

    int root(int x) {
        if (par[x] == -1)
            return x;
        return par[x] = root(par[x]);
    }

    void unite(int x, int y) {
        int rootX = root(x);
        int rootY = root(y);
        if (rootX == rootY)
            return;
        if (size[rootX] < size[rootY]) {
            int tmp = rootX;
            rootX = rootY;
            rootY = tmp;
        }
        par[rootY] = rootX;
        size[rootX] += size[rootY];
        check(rootY);
        check(rootX);
    }

    void check(int x) {
        int root = root(x);
        while (unUnite[root] < unUnite.length && root == root(unUnite[root]))
            unUnite[root]++;
    }

    int unUnitePoint(int x) {
        return unUnite[root(x)];
    }
}
0