728x90
풀이 방법
수정중..
JAVA 코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class SWEA_3289_서로소집합 {
public static void make() {
for (int i = 0; i < n+1; i++) {
parents[i]=i;
}
}
public static int find(int x) {
if(x==parents[x]) return x;
return parents[x]=find(parents[x]);
}
public static void union(int x,int y) {
int xRoot=find(x);
int yRoot=find(y);
if (xRoot!=yRoot) {
parents[yRoot]=xRoot;
}
}
static int[] parents;
static StringTokenizer st;
static StringBuilder sb=new StringBuilder();
static int n,m;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(br.readLine());
for (int t = 1; t < T + 1; t++) {
sb.append("#").append(t).append(" ");
st=new StringTokenizer(br.readLine());
n=Integer.parseInt(st.nextToken());
m=Integer.parseInt(st.nextToken());
parents=new int[n+1];
make();
for (int i = 0; i < m; i++) {
st=new StringTokenizer(br.readLine());
int num=Integer.parseInt(st.nextToken());
int a=Integer.parseInt(st.nextToken());
int b=Integer.parseInt(st.nextToken());
if (num==0) union(a,b);
else if (num==1) {
if(find(a)==find(b)) sb.append(1);
else sb.append(0);
}
}
sb.append("\n");
}
System.out.println(sb);
}
}
답은 맞게 나오는데 자꾸 Runtime Error가 뜨길래 코드를 찬찬히 봤더니 union에서 root를 찾을 때 int xRoot=parents[x] 이렇게 root를 찾고 있었다. 그래서 고쳐주었음
근데 의문인건 이게 Runtime error 인가..?
728x90
'알고리즘 > SWEA' 카테고리의 다른 글
[JAVA] SWEA 1859 백만 장자 프로젝트 (0) | 2021.08.29 |
---|---|
[JAVA] SWEA 7465 창용 마을의 무리의 갯수 (0) | 2021.08.24 |
[JAVA] SWEA 1238 Contact (0) | 2021.08.23 |