Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 메모이제이션
- spring cloud
- Logback
- 게이트웨이
- 구현
- Zuul
- 유레카
- 이분 탐색
- 비트마스킹
- dp
- 구간 트리
- spring boot
- Spring Cloud Config
- 달팽이
- 주울
- 스택
- 스프링 시큐리티
- docker-compose
- BFS
- 다익스트라
- 백트래킹
- 도커
- 이분 매칭
- ZuulFilter
- 완전 탐색
- Gradle
- 트리
- Java
- 서비스 디스커버리
- 플로이드 와샬
Archives
- Today
- Total
Hello, Freakin world!
[백준 2583번] 영역 구하기 본문
미래의 나에게
dfs 함수의 여러 패턴들에 익숙해지도록.
아래의 dfs 함수의 구현에서 종결 조건이 어떻게 구현되는지, int area의 초기값이 왜 1인지,
area = area + dfs(), area = dfs() + 1 등이 어떻게 다른지 눈 여겨보기 바람
...
public class Main {
static int n, m, k;
static int[][] board;
static boolean[][] visited;
public static void main(String[] args) throws IOException {
// InputReader reader = new InputReader("testcase.txt");
InputReader reader = new InputReader();
StringTokenizer st = new StringTokenizer(reader.readLine());
m = Integer.parseInt(st.nextToken());
n = Integer.parseInt(st.nextToken());
k = Integer.parseInt(st.nextToken());
board = new int[m][n];
for (int i = 0; i < k; i++) {
st = new StringTokenizer(reader.readLine());
int x1 = Integer.parseInt(st.nextToken());
int y1 = Integer.parseInt(st.nextToken());
int x2 = Integer.parseInt(st.nextToken());
int y2 = Integer.parseInt(st.nextToken());
fillRectangle(x1, y1, x2, y2);
}
visited = new boolean[m][n];
int count = 0;
List<Integer> areas = new ArrayList<>();
for (int row = 0; row < m; row++) {
for (int col = 0; col < n; col++) {
if(board[row][col] == 0 && !visited[row][col]){
areas.add(dfs(row, col));
count++;
}
}
}
System.out.println(count);
System.out.println(areas.stream()
.sorted()
.map(n -> String.valueOf(n))
.reduce((s1, s2) -> s1 + " " + s2).get());
}
static int[] dr = {1,-1,0,0};
static int[] dc = {0,0,1,-1};
private static int dfs(int row, int col) {
visited[row][col] = true;
int area = 1;
for (int i = 0; i < 4; i++) {
int nextR = row + dr[i];
int nextC = col + dc[i];
if(isRange(nextR, nextC) && board[nextR][nextC] == 0
&& !visited[nextR][nextC]) area += dfs(nextR, nextC);
}
return area;
}
private static boolean isRange(int row, int col) {
if(row < 0 || row >= m || col < 0 || col >= n) return false;
return true;
}
private static void fillRectangle(int x1, int y1, int x2, int y2) {
for (int row = y1; row < y2; row++) {
for (int col = x1; col < x2; col++) {
board[row][col] = 1;
}
}
}
}
class InputReader {
private BufferedReader br;
public InputReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
public InputReader(String filepath) {
try {
br = new BufferedReader(new FileReader(filepath));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public String readLine() throws IOException {
return br.readLine();
}
public int readInt() throws IOException {
return Integer.parseInt(readLine());
}
public Long readLong() throws IOException {
return Long.parseLong(readLine());
}
}
'알고리즘 > PS' 카테고리의 다른 글
[백준 11004] K번째 수 - Quick select (0) | 2020.09.18 |
---|---|
[백준 1764번] 듣보잡 (0) | 2020.09.16 |
[백준 11279번] 최대 힙 (0) | 2020.09.16 |
[백준 1927번] 최소 힙 (0) | 2020.09.16 |
[백준 14499번] 주사위 굴리기 (0) | 2020.09.15 |
Comments