일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 리액트 훅
- 코딩테스트 고득점 Kit
- 프로그래밍 언어론
- 프로그래머스 자바
- 컴퓨터 네트워크
- 프로그래머스 완전탐색
- NextJS
- react hook
- 데이터모델링과마이닝
- useEffect
- 자바 공부
- vanillaJS
- 프로그래머스
- react
- 장고
- websocket
- useState
- react firebase
- 디자인 패턴
- design pattern
- 자바
- 백준
- 리액트
- 코딩테스트 고득점 Kit 완전탐색
- codesandbox
- React JS
- 자바스크립트
- 코틀린
- Java
- JavaScript
Archives
- Today
- Total
기록하는 개발자
[백준][JAVA] 1012 : 유기농 배추 본문
728x90
import java.io.IOException;
import java.util.Scanner;
public class Main{
static int[][] adjacent;
static boolean[][] checked;
static int n,m,k,T,temp;
static StringBuilder sb = new StringBuilder();
public static void main(String[] args) throws IOException {
Scanner s = new Scanner(System.in);
T = s.nextInt(); //테스트케이스 개수
for(int j=0; j<T; j++){
m = s.nextInt(); // col
n = s.nextInt(); // row
k = s.nextInt(); // 배추가 심어져있는 위치의 개수
adjacent = new int[n][m]; // m : col, n : row
checked = new boolean[n][m];
temp=0; //새로운 test case가 입력될 때마다 초기화
for(int i = 0; i <k; i++) { //배추 위치 입력 받기
int x = s.nextInt(); // col
int y = s.nextInt(); // row
adjacent[y][x] = 1; // x : col, y : row
}
for(int t = 0; t < n; t++){
for(int l = 0 ; l < m; l++){
if(checkLocation(t, l) == true) {
temp++;
dfs(t, l);
}
}
}
sb.append(temp + "\n");
}
System.out.println(sb);
}
public static boolean checkLocation(int row, int col){ //true를 반환할 시에만 dfs함수 호출
if(row < 0 || row >= n || col < 0 || col >= m) //좌표값이 잘못된 경우
return false;
if(checked[row][col] == true || adjacent[row][col] == 0) //이미 지나갔거나 배추가 없는 경우
return false;
return true;
}
public static void dfs(int x, int y) { //상하좌우에 배추가 있는지 확인
checked[x][y]=true;
if(checkLocation(x - 1, y)) dfs(x - 1, y);
if(checkLocation(x, y + 1)) dfs(x, y + 1);
if(checkLocation(x + 1, y)) dfs(x + 1, y);
if(checkLocation(x, y - 1)) dfs(x, y - 1);
}
}
728x90
'Algorithm' 카테고리의 다른 글
[프로그래머스][JAVA] 폰켓몬 (0) | 2021.06.11 |
---|---|
[프로그래머스][JAVA] 모의고사 (0) | 2021.06.11 |
[백준][JAVA] 1149 : RGB 거리 (0) | 2021.06.03 |
[백준][JAVA] 2606 : 바이러스 (0) | 2021.06.03 |
[백준][JAVA] 1260 : DFS와 BFS (0) | 2021.06.03 |