티스토리 뷰
출처 : https://www.swexpertacademy.com/main/code/problem/problemDetail.do
#include <iostream>
#include <algorithm>
using
namespace
std;
#define MAX_N 20
int
N, result, starti, startj;
int
map[MAX_N][MAX_N];
bool
used[101];
int
dir[4][2] = { { 1,1 },{ 1,-1 },{ -1,-1 },{ -1,1 } };
void
dfs(
int
i,
int
j,
int
count,
int
comdrc)
{
used[map[i][j]] =
true
;
if
(i-1 == starti && j+1 == startj)
{
result = max(result, count);
used[map[i][j]] =
false
;
return
;
}
for
(
int
c = comdrc; c < comdrc+2; c++)
{
if
(c == 4)
break
;
int
nexti = i + dir[c][0];
int
nextj = j + dir[c][1];
if
(nexti < N && nexti >= 0 && nextj < N && nextj >= 0 && !used[map[nexti][nextj]])
{
dfs(nexti, nextj, count + 1, c);
}
}
used[map[i][j]] =
false
;
}
void
cal()
{
for
(
int
i = 0; i < N-2; i++)
{
for
(
int
j = 1; j < N-1; j++)
{
if
(map[i][j] != map[i + 1][j + 1] && map[i][j] != map[i+1][j-1])
{
starti = i; startj = j; used[map[i][j]] =
true
;
dfs(i+1, j+1, 2, 0);
used[map[i][j]] =
false
;
}
}
}
}
int
main()
{
int
T;
int
tc = 1;
cin >> T;
while
(T--)
{
cin >> N; result = 0;
for
(
int
i = 0; i < N; i++)
for
(
int
j = 0; j < N; j++) cin >> map[i][j];
for
(
int
i = 0; i < 101; i++) used[i] =
false
;
cal();
if
(result == 0) result = -1;
cout <<
"#"
<< tc++ <<
" "
<< result << endl;
}
return
0;
}
'알고리즘 > SWEA' 카테고리의 다른 글
[SWEA 4008] 숫자 만들기 (0) | 2018.07.23 |
---|---|
[SWEA 2112] 보호 필름 (2) | 2018.07.23 |
[SWEA 1949] 등산로 조정 (0) | 2018.07.23 |
[SWEA 4014] 활주로 건설 (0) | 2018.07.23 |
[SWEA 4013] 특이한 자석 (0) | 2018.07.23 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 알고리즘
- 이차원 배열과 연산
- scanf
- SW Expert Academy
- SWEA
- 2018 카카오 블라인드 채용
- 미세먼지 안녕!
- hackerrank
- 17140
- 팁
- 트렌드
- 17142
- 삼성
- 백준
- 17837
- 역량 테스트
- STL
- 17143
- string
- 시간 복잡도
- DFS
- 입출력
- 17144
- 연구소 3
- 새로운 게임 2
- 게리맨더링 2
- DP
- 17779
- boj
- 2018 KAKAO BLIND RECRUITMENT
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함