-

[삼성SW테스트] 백준 14499번 - 주사위 굴리기 (정답률 40%) 본문

1-1. 삼성 SW 테스트

[삼성SW테스트] 백준 14499번 - 주사위 굴리기 (정답률 40%)

asdklfjlasdlfkj 2020. 1. 14. 10:20

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

 

14499번: 주사위 굴리기

첫째 줄에 지도의 세로 크기 N, 가로 크기 M (1 ≤ N, M ≤ 20), 주사위를 놓은 곳의 좌표 x y(0 ≤ x ≤ N-1, 0 ≤ y ≤ M-1), 그리고 명령의 개수 K (1 ≤ K ≤ 1,000)가 주어진다. 둘째 줄부터 N개의 줄에 지도에 쓰여 있는 수가 북쪽부터 남쪽으로, 각 줄은 서쪽부터 동쪽 순서대로 주어진다. 주사위를 놓은 칸에 쓰여 있는 수는 항상 0이다. 지도의 각 칸에 쓰여 있는 수는 10을 넘지 않는 자연수 또는 0이다. 마

www.acmicpc.net

삼성 SW테스트 기출 문제다. (유형 : 시뮬레이션)

정말 단순히 주사위의 위치와 눈의 수, 이동범위를 고려하여 구현하면 되는 문제였다.

범위를 벗어나면 해당 명령은 무시하는 것이 핵심이었다.

 

아래는 소스코드 (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
105
106
107
108
109
110
111
112
113
114
115
116
#include <iostream>
#include <vector>
#include <algorithm>
 
using namespace std;
int N, M, x, y, K; // 지도의 크기, 주사위 위치, 명령 수
int up=0, down=0front=0, back=0, Right=0, Left=0// 주사위 눈
vector<vector<int> > map;
vector<int> order;
typedef struct dir{
    int dr, dc;
}dir;
dir direction[4= { { 01 }, { 0-1 }, { -10 }, { 10 } }; // E, W, N, S
 
void move(int nx, int ny, int dir_index){
    int tmp_u, tmp_d, tmp_f, tmp_b, tmp_r, tmp_l;
    if (dir_index == 0){
        // 1. 동
        tmp_u = Left;
        tmp_d = Right;
        tmp_r = up;
        tmp_l = down;
 
        up = tmp_u;
        down = tmp_d;
        Right = tmp_r;
        Left = tmp_l;
        
        if (map[nx][ny] == 0) map[nx][ny] = down;
        else {
            down = map[nx][ny];
            map[nx][ny] = 0;
        }
    }
    else if (dir_index == 1){
        // 2. 서
        tmp_u = Right;
        tmp_d = Left;
        tmp_r = down;
        tmp_l = up;
 
        up = tmp_u;
        down = tmp_d;
        Right = tmp_r;
        Left = tmp_l;
 
        if (map[nx][ny] == 0) map[nx][ny] = down;
        else {
            down = map[nx][ny];
            map[nx][ny] = 0;
        }
    }
    else if (dir_index == 2){
        // 3. 북
        tmp_u = front;
        tmp_d = back;
        tmp_f = down;
        tmp_b = up;
 
        up = tmp_u;
        down = tmp_d;
        front = tmp_f;
        back = tmp_b;
 
        if (map[nx][ny] == 0) map[nx][ny] = down;
        else {
            down = map[nx][ny];
            map[nx][ny] = 0;
        }
    }
    else if (dir_index == 3){
        // 4. 남
        tmp_u = back;
        tmp_d = front;
        tmp_f = up;
        tmp_b = down;
 
        up = tmp_u;
        down = tmp_d;
        front = tmp_f;
        back = tmp_b;
 
        if (map[nx][ny] == 0) map[nx][ny] = down;
        else {
            down = map[nx][ny];
            map[nx][ny] = 0;
        }        
    }
}
int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
 
    cin >> N >> M >> x >> y >> K;
    map.assign(N, vector<int>(M, 0)); // 지도
    for (int i = 0; i < N; i++){
        for (int j = 0; j < M; j++){
            cin >> map[i][j];
        }
    }
    for (int i = 0; i < K; i++){
        cin >> order[i];
        int dir_index = order[i] - 1;
        int nx = x + direction[dir_index].dr;
        int ny = y + direction[dir_index].dc;
        if (nx < 0 || nx >= N || ny < 0 || ny >= M)
            continue;
        x = nx;
        y = ny;
        move(x, y, dir_index);
        cout << up << '\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