Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- find
- BFS
- dp
- Set
- C++
- 2018
- 삼성
- 백트래킹
- 레벨3
- 모의SW역량테스트
- STL
- 코딩테스트
- dfs
- Sort
- 삼성SW역량테스트
- swea
- 삼성SW테스트
- 완전탐색
- 레벨2
- 코딩스킬
- 백준
- priority_queue
- substr
- 브루트포스
- Map
- 문자열
- 프로그래머스
- 이런게4문제
- KAKAO
- 시뮬레이션
Archives
- Today
- Total
-
[삼성SW테스트] 백준 14499번 - 주사위 굴리기 (정답률 40%) 본문
https://www.acmicpc.net/problem/14499
삼성 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=0, front=0, back=0, Right=0, Left=0; // 주사위 눈
vector<vector<int> > map;
vector<int> order;
typedef struct dir{
int dr, dc;
}dir;
dir direction[4] = { { 0, 1 }, { 0, -1 }, { -1, 0 }, { 1, 0 } }; // 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;
order.assign(K, 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 |
'1-1. 삼성 SW 테스트' 카테고리의 다른 글
[삼성SW테스트] 백준 3190번 - 뱀 (정답률 32%) (0) | 2020.01.14 |
---|---|
[삼성SW테스트] 백준 13458번 - 시험 감독 (정답률 25%) (0) | 2020.01.14 |
[삼성SW테스트] 백준 14500번 - 테트로미노 (정답률 33%) (0) | 2020.01.13 |
[삼성SW테스트] 백준 14501번 - 퇴사 (정답률 46%) (0) | 2020.01.13 |
[삼성SW테스트] 백준 14502번 - 연구소 (정답률 54%) (0) | 2020.01.13 |
Comments