結果
問題 |
No.2290 UnUnion Find
|
ユーザー |
|
提出日時 | 2023-05-06 12:18:32 |
言語 | Java (openjdk 23) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 46 |
ソースコード
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)]; } }