일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 리액트 훅
- react
- useEffect
- 코딩테스트 고득점 Kit 완전탐색
- react hook
- React JS
- react firebase
- 컴퓨터 네트워크
- design pattern
- 자바스크립트
- codesandbox
- 자바 공부
- Java
- websocket
- 디자인 패턴
- vanillaJS
- JavaScript
- 장고
- 프로그래밍 언어론
- 리액트
- 데이터모델링과마이닝
- NextJS
- 프로그래머스 완전탐색
- 프로그래머스 자바
- 코딩테스트 고득점 Kit
- 자바
- 백준
- useState
- 코틀린
- 프로그래머스
Archives
- Today
- Total
기록하는 개발자
[백준][JAVA] 2606 : 바이러스 본문
728x90
import java.io.IOException;
import java.util.Scanner;
public class Main{
static int[][] adjacent; //컴퓨터 연결상태
static boolean[] checked; //확인 여부
static int n,m,num=0;
public static void main(String[] args) throws IOException {
Scanner s = new Scanner(System.in);
n = s.nextInt();
m = s.nextInt();
adjacent = new int[n+1][n+1];
checked = new boolean[n+1];
for(int i = 0; i < m; i++) {
int x = s.nextInt();
int y = s.nextInt();
adjacent[x][y] = adjacent[y][x] = 1;
}
dfs(1);
System.out.println(num);
}
public static void dfs(int i) {
checked[i]=true;
for (int j = 1; j <= n; j++) {
if (adjacent[i][j] == 1 && checked[j] == false) {
num++;
dfs(j);
}
}
}
}
- 풀이는 이전에 올린 1260번 DFS와 BFS 풀이법의 DFS와 동일하므로 아래 링크를 참조하면 된다.
728x90
'Algorithm' 카테고리의 다른 글
[백준][JAVA] 1012 : 유기농 배추 (0) | 2021.06.07 |
---|---|
[백준][JAVA] 1149 : RGB 거리 (0) | 2021.06.03 |
[백준][JAVA] 1260 : DFS와 BFS (0) | 2021.06.03 |
[백준][JAVA/C++] 1003 : 피보나치함수 (0) | 2021.05.14 |
[백준][JAVA] 2905 : 홍준이와울타리 (0) | 2020.07.31 |