728x90
Code
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
|
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
const int MAX = 21;
int r, c;
int dir[4][2] = { {-1,0},{1,0},{0,-1},{0,1} };
int alpha[26];
char arr[MAX][MAX];
int answer;
void dfs(int x, int y, int cnt) {
answer = max(answer, cnt);
for (int i = 0; i < 4; i++) {
int nx = x + dir[i][0];
int ny = y + dir[i][1];
int idx = (int)arr[nx][ny] - 65;
if (nx<0 || nx>=r || ny<0 || ny>=c) // 범위 밖인 경우
continue;
if (alpha[idx]) //알파벳이 이미 있는 경우
continue;
alpha[idx] = 1; //선택
dfs(nx, ny, cnt + 1);
alpha[idx] = 0; //선택 해제
}
}
int main()
{
cin >> r >> c;
for (int i = 0; i < r; i++) {
for (int j = 0; j < c; j++) {
cin >> arr[i][j];
}
}
alpha[(int)arr[0][0] - 65] = 1;
dfs(0, 0, 1);
cout << answer;
}
|
cs |
728x90
'Algorithm > BFS DFS' 카테고리의 다른 글
[백준] 2667 단지번호붙이기 c++ (0) | 2023.02.27 |
---|---|
[프로그래머스] 가장 먼 노드 c++ (0) | 2023.02.25 |
[백준] 바이러스 c++ (0) | 2023.02.23 |
[프로그래머스] 게임 맵 최단거리 c++ (0) | 2023.02.23 |
백준 1260 DFS와 BFS (0) | 2022.02.03 |
댓글