algorithm/BOJ
BOJ 1987번 알파벳
_JunHo
2020. 1. 31. 16:59
BOJ : https://www.acmicpc.net/problem/1987
github : https://github.com/junho0956/Algorithm/blob/master/1987/1987/%EC%86%8C%EC%8A%A4.cpp
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
|
#include <iostream>
using namespace std;
int R, C, Max;
int my[4] = { -1,1,0,0 };
int mx[4] = { 0,0,1,-1 };
char arr[20][20];
bool visit[26];
void dfs(int y, int x, int cnt) {
Max = Max < cnt ? cnt : Max;
for (int i = 0; i < 4; i++) {
int yy = y + my[i];
int xx = x + mx[i];
if (yy >= 0 && yy < R && xx >= 0 && xx < C && !visit[arr[yy][xx]-'A']) {
visit[arr[yy][xx] - 'A'] = true;
dfs(yy, xx, cnt + 1);
visit[arr[yy][xx] - 'A'] = false;
}
}
}
int main() {
ios::sync_with_stdio(0), cin.tie(0);
cin >> R >> C;
for (int i = 0; i < R; i++)
for (int j = 0; j < C; j++)
cin >> arr[i][j];
visit[arr[0][0] - 'A'] = true;
dfs(0, 0, 1);
cout << Max;
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|