Home G14500. 테트로미노
Post
Cancel

G14500. 테트로미노

문제

image


제출 코드

image


  • 사용 알고리즘 : DFS


5가지 유형의 테트로미노 중 4종류는 한줄로 연결할 수 있는 모양이라 각 자리별로 dfs로 탐색한다.

그러나 나머지 한종류(T자형)은 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
package gold;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

public class G14500_tetromino {
	static int N, M;
	static int[][] map, visit;
	static int[] di = {-1, 0, 1, 0};
	static int[] dj = {0, 1, 0, -1};

	static int dfs(int i, int j, int cnt, int sum) {
		if(cnt==4) {
			return sum;
		}
		visit[i][j] = -1;
		int max = -1;
		for(int d=0; d<4; d++) {
			int ni = i + di[d];
			int nj = j + dj[d];
			if(ni<0 || ni>=N || nj<0 || nj>=M || visit[ni][nj]!=0) continue;
			max = Math.max(max, dfs(ni, nj, cnt+1, sum+map[ni][nj]));
		}
		visit[i][j] = 0;
		return max;
	}

	static int checkT(int i, int j) {
		int result=map[i][j], cnt=0;
		int min = Integer.MAX_VALUE;
		for(int d=0; d<4; d++) {
			int ni = i + di[d];
			int nj = j + dj[d];
			if(ni<0 || ni>=N || nj<0 || nj>=M) continue;
			cnt++;
			result += map[ni][nj];
			min = Math.min(min, map[ni][nj]);
		}
		if(cnt==4) return result-min;
		else if(cnt==3) return result;
		else return -1;
	}

	public static void main(String[] args) throws IOException{
		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];
		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());
		}

		// 1. 한줄로 연결되는 4종류의 테트로미노 검사
		int result = -1;
		visit = new int[N][M];
		for(int i=0; i<N; i++) {
			for(int j=0; j<M; j++) {
				result = Math.max(result, dfs(i, j, 1, map[i][j]));
			}
		}

		// 2. T자형 테트로미노 검사
		for(int i=0; i<N; i++) {
			for(int j=0; j<M; j++) {
				result = Math.max(result, checkT(i, j));
			}
		}

		System.out.println(result);
	}

}
This post is licensed under CC BY 4.0 by the author.