結果

問題 No.2290 UnUnion Find
ユーザー viral8viral8
提出日時 2023-05-06 12:18:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,196 ms / 2,000 ms
コード長 1,161 bytes
コンパイル時間 4,190 ms
コンパイル使用メモリ 77,676 KB
実行使用メモリ 61,144 KB
最終ジャッジ日時 2024-11-23 21:10:58
合計ジャッジ時間 58,189 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,804 KB
testcase_01 AC 125 ms
40,940 KB
testcase_02 AC 973 ms
59,820 KB
testcase_03 AC 1,148 ms
59,836 KB
testcase_04 AC 1,119 ms
60,832 KB
testcase_05 AC 1,144 ms
59,720 KB
testcase_06 AC 1,175 ms
59,720 KB
testcase_07 AC 1,146 ms
61,068 KB
testcase_08 AC 1,149 ms
61,048 KB
testcase_09 AC 1,119 ms
60,780 KB
testcase_10 AC 1,167 ms
61,052 KB
testcase_11 AC 1,088 ms
60,852 KB
testcase_12 AC 1,099 ms
60,820 KB
testcase_13 AC 1,132 ms
61,092 KB
testcase_14 AC 1,157 ms
60,948 KB
testcase_15 AC 1,127 ms
59,992 KB
testcase_16 AC 1,177 ms
60,928 KB
testcase_17 AC 1,062 ms
61,144 KB
testcase_18 AC 1,156 ms
60,728 KB
testcase_19 AC 1,150 ms
58,772 KB
testcase_20 AC 1,196 ms
60,456 KB
testcase_21 AC 1,036 ms
59,180 KB
testcase_22 AC 1,049 ms
59,564 KB
testcase_23 AC 1,184 ms
59,548 KB
testcase_24 AC 1,131 ms
58,996 KB
testcase_25 AC 1,143 ms
59,444 KB
testcase_26 AC 1,148 ms
60,032 KB
testcase_27 AC 1,160 ms
59,808 KB
testcase_28 AC 1,108 ms
58,768 KB
testcase_29 AC 1,183 ms
59,676 KB
testcase_30 AC 957 ms
59,672 KB
testcase_31 AC 1,115 ms
59,312 KB
testcase_32 AC 1,104 ms
59,420 KB
testcase_33 AC 1,050 ms
59,252 KB
testcase_34 AC 1,126 ms
60,020 KB
testcase_35 AC 1,183 ms
59,956 KB
testcase_36 AC 1,070 ms
58,600 KB
testcase_37 AC 1,050 ms
59,692 KB
testcase_38 AC 1,061 ms
59,508 KB
testcase_39 AC 1,066 ms
59,356 KB
testcase_40 AC 1,172 ms
59,784 KB
testcase_41 AC 1,004 ms
58,528 KB
testcase_42 AC 1,143 ms
59,588 KB
testcase_43 AC 1,132 ms
59,080 KB
testcase_44 AC 1,085 ms
59,636 KB
testcase_45 AC 1,142 ms
59,368 KB
testcase_46 AC 1,134 ms
59,420 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);
		StringBuilder answer = new StringBuilder();
		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);
				answer.append(ans>N?-1:ans);
				answer.append('\n');
			}
		}
		System.out.println(answer.toString());
	}
}
class UnionFind{
	int N;
	int[] par,unUnite;
	UnionFind(int N){
		this.N = N;
		par = new int[N];
		unUnite = new int[N];
		Arrays.fill(par,-1);
		Arrays.fill(unUnite,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;
		par[rootY] = rootX;
		int max = Math.max(unUnite[rootX],unUnite[rootY]);
		while(max<N&&root(max)==rootX)max++;
		unUnite[rootX] = max;
	}
	int unUnitePoint(int x){
		return unUnite[root(x)];
	}
}
0