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
- 프로그래머스
- 모의SW역량테스트
- 문자열
- 완전탐색
- find
- 이런게4문제
- Map
- 백준
- priority_queue
- Sort
- BFS
- 삼성
- C++
- 삼성SW역량테스트
- KAKAO
- Set
- dfs
- 코딩스킬
- 시뮬레이션
- 브루트포스
- dp
- STL
- 백트래킹
- 삼성SW테스트
- 레벨2
- swea
- substr
- 2018
- 레벨3
- 코딩테스트
Archives
- Today
- Total
-
[삼성SW테스트] 백준 13460번 - 구슬 탈출 2 (정답률 24%) 본문
https://www.acmicpc.net/problem/13460
삼성 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] = { { 0, 1 }, { 0, -1 }, { 1, 0 }, { -1, 0 } };
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;
switch (str[j]){
case '.':
map[i][j] = 0; break;
case '#':
map[i][j] = 1; break;
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;
q.push(first);
visit[irx][iry][ibx][iby] = true;
while (!q.empty()){
balls cur = q.front();
q.pop();
ans = cur.depth;
break;
}
for (int i = 0; i < 4; i++){
move(rx, ry, i), move(bx, by, i);
if (bx == hx && by == hy) continue; // 파란공 빠진 경우 제외
if (rx == bx && ry == by){
switch (i){
case 0:
//East
case 1:
// West
case 2:
//South
case 3:
//North
}
}
if (!visit[rx][ry][bx][by]){
balls next;
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 |
'1-1. 삼성 SW 테스트' 카테고리의 다른 글
[삼성SW테스트] 백준 17822번 - 원판 돌리기 (정답률 31%) (0) | 2020.01.16 |
---|---|
[삼성SW테스트] 백준 17825번 - 주사위 윷놀이 (정답률 30%) (0) | 2020.01.15 |
[삼성SW테스트] 백준 12100번 - 2048 (Easy) (정답률 23%) (0) | 2020.01.15 |
[삼성SW테스트] 백준 3190번 - 뱀 (정답률 32%) (0) | 2020.01.14 |
[삼성SW테스트] 백준 13458번 - 시험 감독 (정답률 25%) (0) | 2020.01.14 |
Comments