結果

問題 No.2290 UnUnion Find
ユーザー viral8viral8
提出日時 2023-05-06 11:22:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,406 ms / 2,000 ms
コード長 1,185 bytes
コンパイル時間 2,744 ms
コンパイル使用メモリ 77,840 KB
実行使用メモリ 61,516 KB
最終ジャッジ日時 2024-11-23 20:36:57
合計ジャッジ時間 65,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,356 KB
testcase_01 AC 134 ms
41,388 KB
testcase_02 AC 1,064 ms
60,148 KB
testcase_03 AC 1,268 ms
60,008 KB
testcase_04 AC 1,301 ms
61,108 KB
testcase_05 AC 1,285 ms
59,736 KB
testcase_06 AC 1,301 ms
59,352 KB
testcase_07 AC 1,309 ms
60,576 KB
testcase_08 AC 1,301 ms
61,140 KB
testcase_09 AC 1,353 ms
61,064 KB
testcase_10 AC 1,337 ms
60,368 KB
testcase_11 AC 1,239 ms
61,168 KB
testcase_12 AC 1,242 ms
60,924 KB
testcase_13 AC 1,242 ms
61,044 KB
testcase_14 AC 1,303 ms
60,452 KB
testcase_15 AC 1,295 ms
61,516 KB
testcase_16 AC 1,290 ms
60,852 KB
testcase_17 AC 1,311 ms
60,920 KB
testcase_18 AC 1,281 ms
61,080 KB
testcase_19 AC 1,304 ms
58,900 KB
testcase_20 AC 1,295 ms
60,280 KB
testcase_21 AC 1,130 ms
59,104 KB
testcase_22 AC 1,248 ms
59,252 KB
testcase_23 AC 1,374 ms
59,040 KB
testcase_24 AC 1,406 ms
59,944 KB
testcase_25 AC 1,233 ms
58,712 KB
testcase_26 AC 1,241 ms
59,456 KB
testcase_27 AC 1,326 ms
60,164 KB
testcase_28 AC 1,253 ms
58,820 KB
testcase_29 AC 1,296 ms
59,316 KB
testcase_30 AC 1,189 ms
60,440 KB
testcase_31 AC 1,238 ms
58,976 KB
testcase_32 AC 1,226 ms
58,728 KB
testcase_33 AC 1,240 ms
58,832 KB
testcase_34 AC 1,315 ms
59,648 KB
testcase_35 AC 1,263 ms
59,452 KB
testcase_36 AC 1,247 ms
59,328 KB
testcase_37 AC 1,280 ms
59,532 KB
testcase_38 AC 1,170 ms
59,632 KB
testcase_39 AC 1,289 ms
59,728 KB
testcase_40 AC 1,251 ms
59,252 KB
testcase_41 AC 1,199 ms
60,580 KB
testcase_42 AC 1,278 ms
58,932 KB
testcase_43 AC 1,216 ms
59,184 KB
testcase_44 AC 1,230 ms
59,956 KB
testcase_45 AC 1,201 ms
58,976 KB
testcase_46 AC 1,262 ms
59,188 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[] par,unUnite;
	UnionFind(int 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;
		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