Notice
Recent Posts
Recent Comments
Link
뮁이의 개발새발
[JAVA] 백준 5567 결혼식 본문
LinkedList 보다 ArrayList가 뭔가 탐색할때 더 빠르다고 한다.. 참고하시길
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.StringTokenizer;
public class bj5567 {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(in.readLine());
int m = Integer.parseInt(in.readLine());
LinkedList<Integer>[] list = new LinkedList[n + 1];
for (int i = 1; i <= n; i++) {
list[i] = new LinkedList<>();
}
StringTokenizer st = null;
for (int i = 0; i < m; i++) {
st = new StringTokenizer(in.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
list[a].add(b);
list[b].add(a);
}
boolean[] invited = new boolean[n + 1];
if (list[1].isEmpty()) {
System.out.println(0);
return;
}
invited[1] = true;
for (int i : list[1]) {
invited[i] = true;
for (int j : list[i]) {
if (!invited[j]) {
invited[j] = true;
}
}
}
int cnt = 0;
for (int i = 1; i <= n; i++) {
if (invited[i]) {
cnt++;
}
}
System.out.println(cnt - 1);
}
}
'Algorithm' 카테고리의 다른 글
[JAVA] 백준 4673 셀프 넘버 (0) | 2021.11.09 |
---|---|
[JAVA] 백준 14499 주사위 굴리기 (0) | 2021.11.08 |
[JAVA] 프로그래머스 로또의 최고 순위와 최저 순위 (0) | 2021.10.04 |
[JAVA] SWEA 1249 보급로 (0) | 2021.09.30 |
[JAVA] 백준 4485 녹색 옷 입은 애가 젤다지? (다익스트라) (0) | 2021.09.29 |
Comments