-

[삼성SW테스트] 백준 13460번 - 구슬 탈출 2 (정답률 24%) 본문

1-1. 삼성 SW 테스트

[삼성SW테스트] 백준 13460번 - 구슬 탈출 2 (정답률 24%)

asdklfjlasdlfkj 2020. 1. 15. 15:43

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

 

13460번: 구슬 탈출 2

첫 번째 줄에는 보드의 세로, 가로 크기를 의미하는 두 정수 N, M (3 ≤ N, M ≤ 10)이 주어진다. 다음 N개의 줄에 보드의 모양을 나타내는 길이 M의 문자열이 주어진다. 이 문자열은 '.', '#', 'O', 'R', 'B' 로 이루어져 있다. '.'은 빈 칸을 의미하고, '#'은 공이 이동할 수 없는 장애물 또는 벽을 의미하며, 'O'는 구멍의 위치를 의미한다. 'R'은 빨간 구슬의 위치, 'B'는 파란 구슬의 위치이다. 입력되는 모든 보드

www.acmicpc.net

삼성 SW테스트 기출문제다. (유형: BFS)

 

어차피 관심있는 것은 공들의 위치이므로 공들의 위치와 depth를 관리하는 구조체를 큐에 넣고 BFS 탐색을 하면 된다.

 

왜냐하면 최소 회전 횟수를 구하는 문제이므로, DFS처럼 한 경우에 대해 모두 다 해보는 것 보다는 동시에 depth를 확장시켜나가다가 답을 찾으면 종료하는 편이 더욱 효율적이기 때문이다.

 

아래는 소스코드 (0ms)

 

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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include <iostream>
#include <queue>
#include <string>
#define maxlen 10
using namespace std;
int n, m, ans = -1;
int map[maxlen][maxlen];
int irx, iry, ibx, iby, hx, hy;
int dr[4][2= { { 01 }, { 0-1 }, { 10 }, { -10 } };
bool visit[10][10][10][10];
 
typedef struct balls{
    int depth;
    int rx, ry, bx, by;
};
 
void move(int &x, int &y, int dir){
    while (1){
        x += dr[dir][0]; y += dr[dir][1];
        if (map[x][y] == 1){
            x -= dr[dir][0]; y -= dr[dir][1];
            break;
        }
        else if (map[x][y] == 2)
            break;
    }
}
 
int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    string str;
    cin >> n >> m;
    for (int i = 0; i < n; i++){
        cin >> str;
        for (int j = 0; j < str.length(); j++){
            switch (str[j]){
            case '.':
                map[i][j] = 0break;
            case '#':
                map[i][j] = 1break;
            case 'O':
                map[i][j] = 2; hx = i; hy = j; break;
            case 'R':
                irx = i; iry = j; break;
            case 'B':
                ibx = i; iby = j; break;
            }
        }
    }
    for (int i = 0; i < 10; i++)
        for (int j = 0; j < 10; j++)
            for (int k = 0; k < 10; k++)
                for (int z = 0; z < 10; z++)
                    visit[i][j][k][z] = false;
 
    queue<balls> q;
    balls first; first.depth = 0first.rx = irx; first.ry = iry; first.bx = ibx; first.by = iby;
    q.push(first);
    visit[irx][iry][ibx][iby] = true;
 
    while (!q.empty()){
        balls cur = q.front();
        q.pop();
        if (cur.depth > 10break;
        if (cur.rx == hx && cur.ry == hy){
            ans = cur.depth;
            break;
        }
        for (int i = 0; i < 4; i++){
            int rx = cur.rx, ry = cur.ry;
            int bx = cur.bx, by = cur.by;
            move(rx, ry, i), move(bx, by, i);
            if (bx == hx && by == hy) continue// 파란공 빠진 경우 제외
 
            if (rx == bx && ry == by){
                switch (i){
                case 0:
                    //East
                    cur.ry > cur.by ? by-- : ry--break;
                case 1:
                    // West
                    cur.ry > cur.by ? ry++ : by++break;
                case 2:
                    //South
                    cur.rx > cur.bx ? bx-- : rx--break;
                case 3:
                    //North
                    cur.rx > cur.bx ? rx++ : bx++break;
                }
            }
 
            if (!visit[rx][ry][bx][by]){
                balls next; 
                next.depth = cur.depth+1next.rx = rx; next.ry = ry; next.bx = bx; next.by = by;
                q.push(next);
                visit[rx][ry][bx][by] = true;
            }
        }
    }
    cout << ans << '\n';
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

Comments