Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Algorithm
- React
- map
- 제로베이스
- 제로베이스 프론트엔드 스쿨
- 자바스크립트
- 프로그래머스
- 구조체
- 백트래킹
- leetcode
- N과 M(2)
- 알고리즘
- 프론트엔드 스쿨
- 멀티스레드
- dfs
- MemoryBarrier
- 서버
- Server
- BFS
- C++
- 백준
- 구현
- c#
- 코딩테스트 스터디
- 코딩테스트
- JavaScript
- socket
- 문자열&연산자
- 완전탐색
- 메모리 배리어
Archives
- Today
- Total
Written
프로그래머스 / 무인도 여행 / C++ 본문
그래프 탐색 문제에서 보통 BFS를 많이 사용했었기 때문에 DFS로 풀어봤습니다.
DFS에 지금까지의 날짜를 누적해가면서 넘기는 경우에는, 지도 형태에 따라 끊기는 경우가 있기 때문에, 이 부분은 조심해야 합니다.
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
|
#include <string>
#include <vector>
#include <climits>
#include <algorithm>
using namespace std;
//d를 가지고 다니면 끊겼을때 제대로 더해지지 않으니 조심!
int dx[4] = {1,-1,0,0};
int dy[4] = {0,0,1,-1};
int N,M;
int visited[100][100];
int dist = 0;
void DFS(int x,int y,vector<string>& maps)
{
visited[x][y] = 1;
dist += maps[x][y]-'0';
for (int i=0;i<4;i++)
{
int nX = x + dx[i];
int nY = y + dy[i];
if (nX < 0 || nX >= N || nY < 0 || nY >= M || maps[nX][nY] == 'X')
continue;
if (visited[nX][nY] == 1)
continue;
DFS(nX,nY,maps);
}
}
vector<int> solution(vector<string> maps) {
vector<int> answer;
N = maps.size();
M = maps[0].length();
for (int i=0;i<N;i++)
{
for (int j=0;j<M;j++)
{
if (maps[i][j] != 'X' && visited[i][j] == 0)
{
DFS(i,j,maps);
answer.push_back(dist);
dist = 0;
}
}
}
sort(answer.begin(),answer.end());
if (answer.empty())
{
answer.push_back(-1);
}
return answer;
}
|
cs |
'알고리즘 문제풀이' 카테고리의 다른 글
프로그래머스 / 숫자 변환하기 / C++ (0) | 2023.08.29 |
---|---|
프로그래머스 / 호텔 대실 / C++ (0) | 2023.08.28 |
프로그래머스 / 광물 캐기 / C++ (0) | 2023.08.25 |
알고리즘 풀이는 Github에 올라갑니다. (0) | 2023.08.25 |
백준 / 1504 / 특정한 최단 경로 / C++ (0) | 2023.05.11 |
Comments