티스토리 뷰
이 문제는 단순히 DFS 탐색으로 풀 수 있습니다.
하지만, 아래 그림에 빨간 동그라미로 표시된 모양의 테트로미노는 DFS로 탐색할 수 없기 때문에 "ㅗ" 모양은
따로 처리해야합니다.
[코드]
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Comparator; import java.util.LinkedList; import java.util.List; import java.util.PriorityQueue; import java.util.Queue; import java.util.StringTokenizer; public class Main { public static int N, M, ans = Integer.MIN_VALUE; public static int[][] map; public static boolean[][] visited; public static int[] dirX = new int[] { 0, 0, 1, -1 }; public static int[] dirY = new int[] { 1, -1, 0, 0 }; public static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); public static void main(String[] args) throws Exception { StringTokenizer st = new StringTokenizer(br.readLine()); N = Integer.parseInt(st.nextToken()); M = Integer.parseInt(st.nextToken()); map = new int[N][M]; visited = new boolean[N][M]; for (int i = 0; i < N; i++) { st = new StringTokenizer(br.readLine()); for (int j = 0; j < M; j++) { map[i][j] = Integer.parseInt(st.nextToken()); } } for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { dfs(i, j, 0, 1); check(i, j); } } System.out.println(ans); } public static void check(int row, int col) { int sum = map[row][col]; int min = Integer.MAX_VALUE; int cnt = 0; for (int i = 0; i < 4; i++) { int nr = row + dirX[i]; int nc = col + dirY[i]; if (isBoundary(nr, nc)) { sum += map[nr][nc]; cnt += 1; min = Math.min(min, map[nr][nc]); } } if (cnt == 4) sum -= min; ans = Math.max(ans, sum); } public static void dfs(int row, int col, int sum, int cnt) { if (cnt > 4) { ans = Math.max(ans, sum); return; } visited[row][col] = true; for (int i = 0; i < 4; i++) { int nr = row + dirX[i]; int nc = col + dirY[i]; if (isBoundary(nr, nc) && !visited[nr][nc]) dfs(nr, nc, sum + map[nr][nc], cnt + 1); } visited[row][col] = false; } public static boolean isBoundary(int row, int col) { return (row >= 0 && row < N) && (col >= 0 && col < M); } } class Node { int row; int col; public Node(int row, int col) { this.row = row; this.col = col; } } | cs |
'알고리즘 문제 > 백준(BOJ)' 카테고리의 다른 글
[백준 15686번] 치킨 배달 :: 늦깎이 IT (0) | 2019.03.09 |
---|---|
[백준 14499번] 주사위 굴리기 :: 늦깎이 IT (0) | 2019.03.08 |
[백준 16234번] 인구 이동 :: 늦깎이 IT (0) | 2019.03.07 |
[백준 16236번] 아기상어 :: 늦깎이 IT (0) | 2019.03.06 |
[백준 16235번] 나무 재테크 :: 늦깎이 IT (0) | 2019.03.05 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 자바
- 브루트포스
- DFS
- 나무 재테크
- 최소힙
- 리스트
- 연산자 끼워넣기
- 알고스팟
- 삼성
- 트리
- 구슬 탈출2
- 우선순위 큐
- 14888
- 정렬
- 백준
- 알고리즘
- 힙
- 탐색
- 배열
- 최대힙
- 시뮬레이션
- SWEA
- 탈주범 검거
- 중간값
- 힙정렬
- 큐
- 구현
- BFS
- 영역 구하기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함