結果

問題 No.2290 UnUnion Find
ユーザー viral8viral8
提出日時 2023-05-06 12:25:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 491 ms / 2,000 ms
コード長 1,603 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 77,656 KB
実行使用メモリ 48,912 KB
最終ジャッジ日時 2024-11-23 21:13:44
合計ジャッジ時間 27,096 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,916 KB
testcase_01 AC 50 ms
36,332 KB
testcase_02 AC 363 ms
46,904 KB
testcase_03 AC 432 ms
48,436 KB
testcase_04 AC 438 ms
48,420 KB
testcase_05 AC 431 ms
48,912 KB
testcase_06 AC 430 ms
48,268 KB
testcase_07 AC 444 ms
48,276 KB
testcase_08 AC 446 ms
48,508 KB
testcase_09 AC 452 ms
48,592 KB
testcase_10 AC 428 ms
48,088 KB
testcase_11 AC 437 ms
48,584 KB
testcase_12 AC 459 ms
48,120 KB
testcase_13 AC 449 ms
48,024 KB
testcase_14 AC 448 ms
48,524 KB
testcase_15 AC 463 ms
48,300 KB
testcase_16 AC 487 ms
48,148 KB
testcase_17 AC 491 ms
48,308 KB
testcase_18 AC 453 ms
48,148 KB
testcase_19 AC 430 ms
47,820 KB
testcase_20 AC 431 ms
48,696 KB
testcase_21 AC 388 ms
46,836 KB
testcase_22 AC 400 ms
47,840 KB
testcase_23 AC 418 ms
47,672 KB
testcase_24 AC 456 ms
48,140 KB
testcase_25 AC 403 ms
47,316 KB
testcase_26 AC 452 ms
48,748 KB
testcase_27 AC 452 ms
48,184 KB
testcase_28 AC 433 ms
47,628 KB
testcase_29 AC 433 ms
47,980 KB
testcase_30 AC 403 ms
48,316 KB
testcase_31 AC 429 ms
47,948 KB
testcase_32 AC 390 ms
47,460 KB
testcase_33 AC 416 ms
47,384 KB
testcase_34 AC 457 ms
48,712 KB
testcase_35 AC 439 ms
48,388 KB
testcase_36 AC 400 ms
47,740 KB
testcase_37 AC 420 ms
47,076 KB
testcase_38 AC 419 ms
47,000 KB
testcase_39 AC 406 ms
47,668 KB
testcase_40 AC 445 ms
48,200 KB
testcase_41 AC 411 ms
47,660 KB
testcase_42 AC 446 ms
47,640 KB
testcase_43 AC 454 ms
47,660 KB
testcase_44 AC 437 ms
48,376 KB
testcase_45 AC 436 ms
47,800 KB
testcase_46 AC 437 ms
47,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
import java.util.Arrays;
class Main{
	public static void main(String[] args)throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] str = br.readLine().split(" ");
		int N = Integer.parseInt(str[0]);
		int Q = Integer.parseInt(str[1]);
		UnionFind uf = new UnionFind(N+1);
		StringBuilder answer = new StringBuilder();
		while(Q-->0){
			str = br.readLine().split(" ");
			int q = Integer.parseInt(str[0]);
			if(q==1){
				int u = Integer.parseInt(str[1]);
				int v = Integer.parseInt(str[2]);
				uf.unite(u,v);
			}
			else{
				int v = Integer.parseInt(str[1]);
				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,size;
	UnionFind(int N){
		this.N = 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 temp = rootX;
			rootX = rootY;
			rootY = temp;
		}
		par[rootY] = rootX;
		size[rootX] += size[rootY];
		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