알고리즘61 :: BOJ_14500_테트로미노
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
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class {
static int n,m;
static int[][] map;
static int[][] visit;
static int[] dx = {-1,1,0,0};
static int[] dy = {0,0,-1,1};
static int ans = Integer.MIN_VALUE;
static void go(int x, int y, int sum, int cnt) {
if(cnt == 4) {
if(ans<sum) ans = sum;
return ;
}else {
for(int i=0; i<4; i++) {
int ddx = x + dx[i];
int ddy = y + dy[i];
if(ddx<0 || ddx>=n || ddy<0 || ddy>=m) continue;
if(visit[ddx][ddy] == 0) {
visit[ddx][ddy] = 1;
go(ddx,ddy,sum+map[ddx][ddy],cnt+1);
visit[ddx][ddy] = 0;
}
}
}
}
public static void main(String[] args) throws Exception{
// TODO Auto-generated method stub
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
n = Integer.parseInt(st.nextToken());
m = Integer.parseInt(st.nextToken());
map = new int[n][m];
visit = new int[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());
}
}//end of for loop
for(int i=0; i<n; i++) {
for(int j=0; j<m; j++) {
visit[i][j] = 1;
go(i,j,0,0); //한칸 에서 이어질 수 있는 4칸을 확인해보고
visit[i][j] = 0;
//i = x, j = y
//4가지 경우의 예외가 생깁니다. ㅗ, ㅜ, ㅏ, ㅓ 이것들은 DFS로 탐색할 수 없다.
if(i-1>=0 && j+1<m && j+2<m) {
int temp = map[i][j] + map[i-1][j+1]
+ map[i][j+1] + map[i][j+2];
ans = Math.max(ans, temp);
}//case1
if(j+1<m && j+2<m && i+1<n) {
int temp = map[i][j] + map[i][j+1]
+ map[i][j+2] + map[i+1][j+1];
ans = Math.max(ans, temp);
}//case2
if(i+1<n && i+2<n && j+1<m) {
int temp = map[i][j] + map[i+1][j]
+map[i+1][j+1] + map[i+2][j];
ans = Math.max(ans, temp);
}//case3
if(i+1 <n && i+2<n && j-1>=0) {
int temp = map[i][j] + map[i+1][j-1]
+ map[i+1][j] + map[i+2][j];
ans = Math.max(ans, temp);
}//case4
}//end of for loop
}
System.out.println(ans);
}
}
|
cs |
'알고리즘' 카테고리의 다른 글
알고리즘63 :: BOJ_1987_알파벳 (0) | 2020.02.24 |
---|---|
알고리즘62 :: BOJ_15740_A+B - 9 (0) | 2020.02.24 |
알고리즘60 :: BOJ_1748_수이어쓰기1 (0) | 2020.02.24 |
알고리즘59 :: BOJ_1977_완전제곱수 (0) | 2020.02.22 |
알고리즘58 :: BOJ_2206_벽부수고이동하기 (0) | 2020.02.21 |
댓글
이 글 공유하기
다른 글
-
알고리즘63 :: BOJ_1987_알파벳
알고리즘63 :: BOJ_1987_알파벳
2020.02.24 -
알고리즘62 :: BOJ_15740_A+B - 9
알고리즘62 :: BOJ_15740_A+B - 9
2020.02.24 -
알고리즘60 :: BOJ_1748_수이어쓰기1
알고리즘60 :: BOJ_1748_수이어쓰기1
2020.02.24 -
알고리즘59 :: BOJ_1977_완전제곱수
알고리즘59 :: BOJ_1977_완전제곱수
2020.02.22