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
- Sort
- C++
- dfs
- 코딩스킬
- 삼성SW역량테스트
- Set
- substr
- 이런게4문제
- 문자열
- dp
- 모의SW역량테스트
- 시뮬레이션
- 코딩테스트
- Map
- KAKAO
- BFS
- 삼성SW테스트
- 레벨2
- 백트래킹
- priority_queue
- STL
- 백준
- 완전탐색
- 삼성
- 브루트포스
- find
- 2018
- swea
- 프로그래머스
- 레벨3
Archives
- Today
- Total
-
[DFS] 백준 2667번 - 단지번호붙이기 (정답률 38%) 본문
https://www.acmicpc.net/problem/2667
백준 DFS 연습 문제다.
바로 전에 풀었던 1012번(유기농 배추, https://cpp-dev.tistory.com/22)과 유사한 문제다.
전체 map을 돌면서 방문하지 않았고, 아파트가 있는 곳이면 dfs 탐색으로 해당 아파트의 단지를 모두 방문한뒤, 동일한 과정을 이어나가며 총 단지의 개수 및 그 단지마다 있는 아파트의 개수를 구하면 된다.
벡터에 정답들을 담아넣고 <algorithm>의 sort 함수로 출력해도 되었으나 그냥 priority_queue를 연습할 겸 써봤다.
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
|
#include <iostream>
#include <queue>
#include <string>
#include <functional>
#define maxlen 25
using namespace std;
int map[maxlen][maxlen];
bool check[maxlen][maxlen];
int N;
int cur_ans = 0;
priority_queue<int, vector<int>, greater<int> > pq_answer;
typedef struct dir{
int dr, dc;
}dir;
dir direction[4] = { { 0, 1 }, { 0, -1 }, { 1, 0 }, { -1, 0 } };
void reset(){
for (int i = 0; i < maxlen; i++){
for (int j = 0; j < maxlen; j++){
map[i][j] = 0;
check[i][j] = false;
}
}
}
void dfs(int r, int c){
check[r][c] = true;
cur_ans++;
for (int i = 0; i < 4; i++){
int n_r = r + direction[i].dr;
int n_c = c + direction[i].dc;
if (n_r >= 0 && n_r < N && n_c >= 0 && n_c < N){
if (!check[n_r][n_c] && map[n_r][n_c]){
dfs(n_r, n_c);
}
}
}
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
string str;
reset();
cin >> N;
for (int i = 0; i < N; i++){
cin >> str;
if (str[j] == '0')
map[i][j] = 0;
else
map[i][j] = 1;
}
}
for (int r = 0; r < N; r++){
for (int c = 0; c < N; c++){
if (!check[r][c] && map[r][c]){
dfs(r, c);
cur_ans = 0;
}
}
}
int loop_cnt = pq_answer.size();
cout << loop_cnt << '\n';
for (int i = 0; i < loop_cnt; i++)
{
pq_answer.pop();
}
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 |
'3. DFS & 백트래킹' 카테고리의 다른 글
[DFS] 백준 2468번 - 안전영역 (정답률 33%) (0) | 2020.01.13 |
---|---|
[DFS] 백준 2583번 - 영역 구하기 (정답률 56%) (0) | 2020.01.13 |
[DFS] 백준 1012번 - 유기농 배추 (정답률 34%) (0) | 2020.01.07 |
[DFS] 백준 11403번 - 경로 찾기 (정답률 51%) (0) | 2020.01.07 |
[BOJ-1260] DFS와 BFS (0) | 2019.12.27 |
Comments