티스토리 뷰

PS/BOJ C++

1987번 - 알파벳

zpqmdh 2022. 1. 30. 21:41

https://www.acmicpc.net/problem/1987

 

1987번: 알파벳

세로 R칸, 가로 C칸으로 된 표 모양의 보드가 있다. 보드의 각 칸에는 대문자 알파벳이 하나씩 적혀 있고, 좌측 상단 칸 (1행 1열) 에는 말이 놓여 있다. 말은 상하좌우로 인접한 네 칸 중의 한 칸으

www.acmicpc.net

#include <iostream>
using namespace std;
int R, C, ans = 0;
char board[21][21];
bool check[26] = {false};
int dy[4] = {1, -1, 0, 0};
int dx[4] = {0, 0, 1, -1};
bool isPossible(int row, int col)
{
    if(row<0 || row >= R || col<0 || col>=C)
        return false;
    return true;
}
void dfs(int row, int col, int cnt)
{
    //ans update
    if(ans < cnt)
        ans = cnt;

    for(int i=0; i<4; i++)
    {
        int ny = row + dy[i];
        int nx = col + dx[i];
        if(true == isPossible(ny,nx) && false == check[board[ny][nx]-65])
        {
            int idx = board[ny][nx] - 65;
            check[idx] = true;
            dfs(ny, nx, cnt+1);
            check[idx] = false; //backtracking
        }
        
    }
}
int main()
{
    cin >> R >> C;

    char tmp;
    for(int i=0; i<R; i++)
    {
        for(int j=0; j<C; j++)
        {
            cin >> tmp;
            board[i][j] = tmp;
        }
    }

    check[board[0][0]-65] = true; //첫번째 값 표시
    dfs(0, 0, 1); //dfs 실행

    cout << ans << '\n';
    return 0;
}

'PS > BOJ C++' 카테고리의 다른 글

2563번 - 색종이  (0) 2022.02.11
10866번 - 덱  (0) 2022.02.07
4963번 - 섬의 개수  (0) 2022.01.27
2468번 - 안전 영역  (0) 2022.01.26
2636번 - 치즈  (0) 2022.01.25
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함