728x90
반응형
백준
https://www.acmicpc.net/problem/2468
- 오늘의 학습 키워드 : DFS + 브루트포스
- 공부한 내용 본인의 언어로 정리하기
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
public class Main {
static int N;
static int[][] arr;
static boolean[][] visited;
static int[] dx = {0, 0, -1, 1};
static int[] dy = {1, -1, 0, 0};
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
arr = new int[N][N];
int maxHeight = 0;
for (int i=0; i<N; i++) {
StringTokenizer st = new StringTokenizer(br.readLine());
for (int j=0; j<N; j++) {
arr[i][j] = Integer.parseInt(st.nextToken());
if (arr[i][j] > maxHeight) {
maxHeight = arr[i][j];
}
}
}
int max = 0;
//모든 지역 탐색
for (int h=0; h<maxHeight+1; h++) {
visited = new boolean[N][N];
int rain = 0;
for (int i=0; i<N; i++) {
for (int j=0; j<N; j++) {
if (arr[i][j] > h && !visited[i][j]) {
rain += dfs(i, j, h);
}
}
}
max = Math.max(max, rain);
}
System.out.println(max);
}
private static int dfs(int x, int y, int h) {
visited[x][y] = true;
for (int i=0; i<4; i++) {
int a = x + dx[i];
int b = y + dy[i];
if (a >= 0 && b >= 0 && a < N && b < N && arr[a][b] > h && !visited[a][b]) {
dfs(a, b, h);
}
}
return 1;
}
}
99클럽 1기를 수강하면서 작성한 글입니다.
728x90
반응형
'Blog > Education' 카테고리의 다른 글
99클럽 코테 스터디 46일차 TIL + DP (0) | 2024.05.09 |
---|---|
99클럽 코테 스터디 45일차 TIL + DP (0) | 2024.05.08 |
99클럽 코테 스터디 43일차 TIL + DFS (0) | 2024.05.06 |
99클럽 코테 스터디 42일차 TIL + DFS (0) | 2024.05.05 |
99클럽 코테 스터디 41일차 TIL + 오늘의 학습 키워드 (0) | 2024.05.04 |
댓글