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
- 문자열
- priority_queue
- STL
- 완전탐색
- 백트래킹
- Sort
- 코딩테스트
- 이런게4문제
- Map
- 모의SW역량테스트
- 레벨2
- swea
- 코딩스킬
- 프로그래머스
- 레벨3
- 삼성
- 시뮬레이션
- substr
- BFS
- KAKAO
- dp
- find
- 삼성SW테스트
- 브루트포스
- 백준
- 삼성SW역량테스트
- 2018
- C++
- dfs
- Set
Archives
- Today
- Total
-
[SWEA_D4] 1226번 - 미로 1 본문
dfs 알고리즘을 활용한 완전탐색 문제다.
주어진 조건대로 0이거나 목적지인 3인 경우만 갈 수 있게 설정하고, 방문하지 않은 곳에 대해서만 방문하도록 했다.
문자 -> 숫자 변환은 '0'을 빼는 것이므로 47번째 줄에서 처리해주었다.
아래는 코드
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
|
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;
vector<vector<int> > MAP;
vector<vector<bool> > check;
int r_s, c_s;
int answer = 0;
typedef struct dir{
int dr, dc;
}dir;
dir direction[4] = { { 0, 1 }, { 0, -1 }, { 1, 0 }, { -1, 0 } };
void dfs(int r, int c){
if (MAP[r][c] == 3){
answer = 1;
return;
}
check[r][c] = true;
for (int i = 0; i < 4; i++){
int nr = r + direction[i].dr;
int nc = c + direction[i].dc;
if (nr >= 0 && nr < 16 && nc >= 0 && nc < 16){
if ((MAP[nr][nc] == 0 || MAP[nr][nc] == 3) && !check[nr][nc]){
dfs(nr, nc);
}
}
}
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
for (int tc = 1; tc <= 10; tc++){
int t;
cin >> t;
answer = 0;
for (int r = 0; r < 16; r++){
string curRow;
cin >> curRow;
for (int c = 0; c < 16; c++){
MAP[r][c] = curRow[c] - '0';
if (MAP[r][c] == 2){
r_s = r;
c_s = c;
}
}
}
dfs(r_s, c_s);
cout << "#" << t << " " << answer << '\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-2. SWEA' 카테고리의 다른 글
[SWEA_D3] 1244번 - 최대 상금 (0) | 2020.03.15 |
---|---|
[SWEA_모의SW역량테스트] 2105번 - 디저트 카페 (0) | 2020.02.27 |
[SWEA_모의SW역량테스트] 1953번 - 탈주범 검거 (0) | 2020.02.26 |
[SWEA_모의SW역량테스트] 4013번 - 특이한 자석 (0) | 2020.01.28 |
[SWEA_모의SW역량테스트] 4014번 - 활주로 건설 (0) | 2020.01.27 |
Comments