본문 바로가기

알고리즘 관련/BOJ

BOJ)14503 로봇 청소기

문제: icpc.me/14503


주어진 조건대로 로봇을 작동시킬 때 청소를 몇칸까지 할 수 있는지 판단하는 문제이다.


청소한 빈칸을 2 청소안한 빈칸을 0 벽을 1으로 설정한 뒤 시키는대로 시뮬레이션을 돌려주면 된다.

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 <cstdio>
#include <algorithm>
using namespace std;
int n, m, a[51][51], x, y, h, r;
int dx[] = { 0,-1,0,};
int dy[] = { -1,0,1,};
int main() {
    scanf("%d%d"&n, &m);
    scanf("%d%d%d"&x, &y, &h);
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++)
            scanf("%d"&a[i][j]);
    }
    bool f = 1;
    while (f) {
        if (!a[x][y])
            r++;
        a[x][y] = 2;
        for (int i = 0; i < 5; i++) {
            if (i == 4) {
                int cx = x + dx[(h + 3) % 4];
                int cy = y + dy[(h + 3) % 4];
                if (a[cx][cy] != 1) {
                    x = cx;
                    y = cy;
                }
                else
                    f = 0;
                break;
            }
            int cx = x + dx[h];
            int cy = y + dy[h];
            h = (h + 3) % 4;
            if (!a[cx][cy]) {
                x = cx;
                y = cy;
                break;
            }
        }
    }
    printf("%d\n", r);
    return 0;
}
cs


'알고리즘 관련 > BOJ' 카테고리의 다른 글

BOJ)3109 빵집  (0) 2017.04.21
BOJ)1251 단어 나누기  (0) 2017.04.20
BOJ)14500 테트로미노  (4) 2017.04.17
BOJ)14501 퇴사  (0) 2017.04.17
BOJ)14502 연구소  (2) 2017.04.17