2 분 소요

[3187] 양치기 꿍

Algorithm: bfs Created: Feb 02, 2020 11:13 PM DoubleChk: No Type: 백준 link: https://www.acmicpc.net/problem/3187

문제

양치기 꿍은 맨날 늑대가 나타났다고 마을 사람들을 속였지만 이젠 더이상 마을 사람들이 속지 않는다. 화가 난 꿍은 복수심에 불타 아예 늑대들을 양들이 있는 울타리안에 마구 집어넣어 양들을 잡아먹게 했다.

하지만 양들은 보통 양들이 아니다. 같은 울타리 영역 안의 양들의 숫자가 늑대의 숫자보다 더 많을 경우 늑대가 전부 잡아먹힌다. 물론 그 외의 경우는 양이 전부 잡아먹히겠지만 말이다.

꿍은 워낙 똑똑했기 때문에 이들의 결과는 이미 알고있다. 만약 빈 공간을 ‘.’(점)으로 나타내고 울타리를 ‘#’, 늑대를 ‘v’, 양을 ‘k’라고 나타낸다면 여러분은 몇 마리의 양과 늑대가 살아남을지 계산할 수 있겠는가?

단, 울타리로 막히지 않은 영역에는 양과 늑대가 없으며 양과 늑대는 대각선으로 이동할 수 없다.

입력

입력의 첫 번째 줄에는 각각 영역의 세로와 가로의 길이를 나타내는 두 개의 정수 R, C (3 ≤ R, C ≤ 250)가 주어진다.

다음 각 R줄에는 C개의 문자가 주어지며 이들은 위에서 설명한 기호들이다.

출력

살아남게 되는 양과 늑대의 수를 각각 순서대로 출력한다.

예제 입력 1

6 6
...#..
.##v#.
#v.#.#
#.k#.#
.###.#
...###

예제 출력 1

0 2

예제 입력 2

8 8
.######.
#..k...#
#.####.#
#.#v.#.#
#.#.k#k#
#k.##..#
#.v..v.#
.######.

예제 출력 2

3 1

예제 입력 3

9 12
.###.#####..
#.kk#...#v#.
#..k#.#.#.#.
#..##k#...#.
#.#v#k###.#.
#..#v#....#.
#...v#v####.
.####.#vv.k#
.......####.

예제 출력 3

3 5

```c++ #include #include #include #include #include #define MAX 303 using namespace std; int r, c, sheep, wolf; int ansSheep, ansWolf; char fence[MAX][MAX]; int visit[MAX][MAX]; queue <pair<int, int>> q; int dx[4] = {0, 0, -1, 1}; int dy[4] = {-1, 1, 0, 0}; void bfs(int x, int y){

    q.push(make_pair(x, y));
    visit[x][y] = 1;
    if(fence[x][y] == 'k') sheep++;
    if(fence[x][y] == 'v') wolf++;

    while(!q.empty()){
        int top_x = q.front().first;
        int top_y = q.front().second;
        q.pop();

        for(int i=0; i<4; i++){
            int next_x = top_x + dx[i];
            int next_y = top_y + dy[i];

            if(visit[next_x][next_y] || next_x < 0 || next_y < 0 || next_x >= r || next_y >= c || fence[next_x][next_y] == '#')
                continue;

            if(fence[next_x][next_y] == 'k') sheep++;
            if(fence[next_x][next_y] == 'v') wolf++;

            visit[next_x][next_y] = 1;
            q.push(make_pair(next_x, next_y));
        }
    }
}
void input(){

    for(int i=0; i<r; i++){
        for(int j=0; j<c; j++){
            cin >> fence[i][j];
        }
    }
}
void solve(){
    for(int i=0; i<r; i++){
        for(int j=0; j<c; j++){
            if(fence[i][j] != '#' && !visit[i][j]){
                wolf = 0; sheep = 0;
                bfs(i, j);

                if (wolf < sheep)
                    ansSheep += sheep;
                else
                    ansWolf += wolf;
            }
        }
    }
}
int main() {

    cin >> r >> c;

    input();

    solve();

    cout << ansSheep << ' ' << ansWolf << endl;

    return 0;

}
```

카테고리:

업데이트: