250x250
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 |
Tags
- 완전탐색
- sw expert academy
- 백준
- readingbook
- SQL
- 알고리즘
- swexpertacademy
- MySQL
- D4
- 원서
- PyQt
- dfs
- 코딩테스트
- 직무면접
- sw expert
- STUDYENGLISH
- 코테 대비
- 쉬운 알고리즘 문제
- 삼성
- 코테 준비
- englishbook
- the midnight library
- 알고리즘 문제
- 코테
- 프로그래머스
- 원서읽기
- 원서읽자
- English
- nightroutine
- BFS
Archives
- Today
- Total
시나브로
[ 백준 ] 14500번 테트로미노 _ 완전 탐색 본문
728x90
완전 탐색인 문제이기 때문에 모든 경우의 수를 탐색했다
각 꼭지점이 겹쳐져야 되기에 기준의 되는 블록을 기준으로 상하좌우로 전체 탐색을 하면된다.
하지만, 이 경우 ㅏ 모양의 테트로미노가 불가능하기에 대각선에 대해서도 모든 경우를 탐색해줬다.
그렇기에 상하좌우를 확인하는 if 문 4개와 4개의 대각선을 확인하는 if문 4개로 구성된다.
대각선을 확인할 때는 연결되야되기에 안에 if문이 추가되었다.
#include<stdio.h>
int space[510][510];
int n, m = 0;
int max = 0;
int search(int i, int j ,int score,int count) {
int empty_box = space[i][j];
score += empty_box;
space[i][j] = -1;
if (count == 3) {
space[i][j] = empty_box;
return score;
}
int s_max = -1;
int box = 0;
if (i + 1 < 501) {
if (space[i + 1][j] != -1) {
box = search(i + 1, j, score, count + 1);
if (s_max < box)
s_max = box;
}
}
if (j + 1 < 501) {
if (space[i][j + 1] != -1) {
box = search(i, j + 1, score, count + 1);
if (s_max < box)
s_max = box;
}
}
if (i - 1 >= 0) {
if (space[i - 1][j] != -1) {
box = search(i - 1, j, score, count + 1);
if (s_max < box)
s_max = box;
}
}
if (j - 1 >= 0) {
if (space[i][j - 1] != -1) {
box = search(i, j - 1, score, count + 1);
if (s_max < box)
s_max = box;
}
}
if (i + 1 < 501 && j + 1 < 501) {
if ((space[i + 1][j] == -1 || space[i][j + 1] == -1)) {
if (space[i + 1][j + 1] != -1) {
box = search(i + 1, j + 1, score, count + 1);
if (s_max < box)
s_max = box;
}
}
}
if (j + 1 < 501 && i - 1 > -1) {
if ((space[i][j + 1] == -1 || space[i - 1][j] == -1)) {
if (space[i - 1][j + 1] != -1) {
box = search(i - 1, j + 1, score, count + 1);
if (s_max < box)
s_max = box;
}
}
}
if (i + 1 <501 && j - 1 > -1) {
if (space[i][j - 1] == -1 || space[i + 1][j] == -1) {
if (space[i + 1][j - 1] != -1) {
box = search(i + 1, j - 1, score, count + 1);
if (s_max < box)
s_max = box;
}
}
}
if (j - 1 >= 0 && i - 1 >= 0) {
if (space[i - 1][j] == -1 || space[i][j - 1] == -1) {
if (space[i - 1][j - 1] != -1) {
box = search(i - 1, j - 1, score, count + 1);
if (s_max < box)
s_max = box;
}
}
}
space[i][j] = empty_box;
return s_max;
}
int main(void) {
freopen("inp.inp", "r", stdin);
freopen("out.out", "w", stdout);
scanf("%d %d", &n, &m);
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
scanf("%d", &space[i][j]);
}
}
int empty_box = 0;
int box = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
box=search(i, j, empty_box, 0);
if (box > max)
max = box;
}
}
printf("%d", max);
return 0;
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
8393 합 (0) | 2020.01.09 |
---|---|
[백준] 체스판 다시 칠하기 (0) | 2019.12.31 |
[백준] 7568번 덩치 (0) | 2019.12.31 |
[백준] 2231번 분해합 (0) | 2019.12.31 |
[백준] 2798 번 블랙잭 (0) | 2019.12.31 |
Comments