import java.util.*;
public class Main
{
static int N, M, ans;
static int[][] map;
static int[] dy = {-1, 1, 0, 0};
static int[] dx = {0, 0, -1, 1};
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
M = sc.nextInt();
map = new int[N][M];
for (int i = 0; i < N; i++){
for (int j = 0; j < M; j++){
map[i][j] = sc.nextInt();
}
}
boolean[][] visit = new boolean[N][M];
for(int i = 0; i < N; i++){
for(int j = 0; j < M; j++){
visit[i][j] = true;
dfs(i, j, 1, map[i][j], visit);
visit[i][j] = false;
check(i, j);
}
}
System.out.println(ans);
}
static void dfs(int y, int x, int cnt, int sum, boolean[][] visit){
if (cnt >= 4){
ans = Math.max(ans, sum);
return;
}
for (int k = 0; k < 4; k++){
int ny = y + dy[k];
int nx = x + dx[k];
if (ny < 0 || nx < 0 || ny >= N || nx >= M || visit[ny][nx]){
continue;
}
visit[ny][nx] = true;
dfs(ny, nx, cnt + 1, sum + map[ny][nx], visit);
visit[ny][nx] = false;
}
}
static void check(int y, int x) { // ㅏ ㅜ ㅓ ㅗ 순으로 작성됐다
if (y < N - 2 && x < M - 1){
ans = Math.max(ans, map[y][x] + map[y + 1][x] + map[y + 2][x] + map[y + 1][x + 1]);
}
if (y < N - 1 && x < M - 2){
ans = Math.max(ans, map[y][x] + map[y][x + 1] + map[y + 1][x + 1] + map[y][x + 2]);
}
if (y < N - 2 && x > 0){
ans = Math.max(ans, map[y][x] + map[y + 1][x] + map[y + 2][x] + map[y + 1][x - 1]);
}
if (y > 0 && x < M - 2){
ans = Math.max(ans, map[y][x] + map[y - 1][x + 1] + map[y][x + 1] + map[y][x + 2]);
}
}
}
//dfs depth 4가 될 떄 까지 탐색
// 4방향씩 탐색
어려운 문제다
주기적으로 보자
'알고리즘' 카테고리의 다른 글
BFS 기본 알고리즘 (0) | 2022.09.25 |
---|---|
[백준] 16236번 (java 자바) (0) | 2022.09.20 |
[백준] 9019번 (python 파이썬) (0) | 2022.08.21 |
[백준] 16928번(python 파이썬) (0) | 2022.08.18 |
[백준] 10026번(python 파이썬) (0) | 2022.08.02 |