본문 바로가기

알고리즘 관련/BOJ

BOJ)14499 주사위 굴리기

문제: icpc.me/14499


문제에서 주어진 조건에 맞게 주사위를 시뮬레이션해주면 된다.


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
#include <cstdio>
#include <algorithm>
using namespace std;
int n, m, x, y, k, a[21][21], dice[6], q;
bool chk(int cx, int cy) {
    return <= cx&&cx < n && <= cy&&cy < m;
}
void getone() {
    int tdice[6];
    for (int i = 0; i < 6; i++
        tdice[i] = dice[i];
    dice[0= tdice[3];
    dice[3= tdice[5];
    dice[5= tdice[2];
    dice[2= tdice[0];
}
void gettwo() {
    int tdice[6];
    for (int i = 0; i < 6; i++)
        tdice[i] = dice[i];
    dice[0= tdice[2];
    dice[2= tdice[5];
    dice[5= tdice[3];
    dice[3= tdice[0];
}
void getthree() {
    int tdice[6];
    for (int i = 0; i < 6; i++)
        tdice[i] = dice[i];
    dice[0= tdice[4];
    dice[4= tdice[5];
    dice[5= tdice[1];
    dice[1= tdice[0];
}
void getfour() {
    int tdice[6];
    for (int i = 0; i < 6; i++)
        tdice[i] = dice[i];
    dice[0= tdice[1];
    dice[1= tdice[5];
    dice[5= tdice[4];
    dice[4= tdice[0];
}
int dx[] = { 0,0,-1,};
int dy[] = { 1,-1,0,};
void sp() {
    if (a[x][y]) {
        dice[5= a[x][y];
        a[x][y] = 0;
    }
    else
        a[x][y] = dice[5];
}
int main() {
    scanf("%d%d%d%d%d"&n, &m, &x, &y, &k);
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++)
            scanf("%d"&a[i][j]);
    }
    for (int i = 0; i < k; i++) {
        scanf("%d"&q);
        int nx = x + dx[q-1];
        int ny = y + dy[q-1];
        if (!chk(nx, ny))
            continue;
        x = nx;
        y = ny;
        if (q == 1)
            getone();
        else if (q == 2)
            gettwo();
        else if (q == 3)
            getthree();
        else
            getfour();
        sp();
        printf("%d\n", dice[0]);
    }
    return 0;
}
cs


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

BOJ)7573 고기잡이  (0) 2017.04.12
BOJ)1202 보석 도둑  (0) 2017.04.12
BOJ)2213 트리의 독립집합  (1) 2017.04.10
BOJ)3770 대한민국  (0) 2017.04.06
BOJ)6091 핑크 플로이드  (0) 2017.04.06