티스토리 뷰
반응형
백준 2206번 벽 부수고 이동하기
https://www.acmicpc.net/problem/2206
정답 코드
#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
#include<cstring>
#include<string>
using namespace std;
int map[1001][1001];
int visited[1001][1001][2];
queue<pair<pair<int,int>,int>> q;
string str;
int n,m;
int dx[] = {1,0,-1,0};
int dy[] = {0,1,0,-1};
int bfs(){
q.push({{1,1},1});
visited[1][1][1]=1;
while(!q.empty()){
int x = q.front().first.first;
int y = q.front().first.second;
int wall = q.front().second;
q.pop();
if(x==n && y==m) return visited[x][y][wall];
for(int i=0; i<4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (nx >= 1 && nx <= n && ny >= 1 && ny <=m) {
if(wall == 1 && map[nx][ny]==1){
q.push({{nx,ny},0});
visited[nx][ny][0] = visited[x][y][1] + 1;
}
else if(map[nx][ny]==0 && visited[nx][ny][wall]==0){
q.push({{nx,ny},wall});
visited[nx][ny][wall] = visited[x][y][wall] + 1;
}
}
}
}
return -1;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
cin >> n >> m;
for(int i=1; i<=n;i++){
cin >> str;
for(int j=1; j<=str.size();j++){
map[i][j] = str[j-1]-48;
}
}
int ans = bfs();
cout << ans;
return 0;
}
문제 풀이
bfs로 구현하는 문제이지만 이전에 풀었던 문제들보다는 조금 더 난이도가 있는 문제입니다. 그리고 배열을 선언할 시 3차원으로 선언해서 벽 부수는 것까지 고려를 해주어야 합니다.
도착점에 도달할 시 거기에 해당하는 visit배열의 좌표를 반환해줍니다. 그게 아닐 시 for문을 돌리면서 wall=1이고 움직이는 곳이 1일때와
움직이는 곳이0이고 방문하지 않은 경우를 나누어서
구현하면 됩니다. 이 두가지 이외에는 일반적인 bfs구현과 동일합니다.
반응형
'Algorithm > BOJ' 카테고리의 다른 글
백준 2231번 C++ (0) | 2023.08.05 |
---|---|
백준 2230번 C++ (0) | 2023.08.05 |
백준 2193번 C++ (0) | 2023.08.05 |
백준 2178번 C++ (0) | 2023.08.05 |
백준 2164번 C++ (0) | 2023.08.04 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- js
- 자료구조
- 백준 풀이
- 자바
- C++
- java
- DFS
- 백준
- html
- 투 포인터
- 자바스크립트
- c++ string
- DP
- 우선순위 큐
- C++ Stack
- CSS
- 유클리드 호제법
- 카운팅 정렬
- Do it!
- BFS
- 스택
- 에라토스테네스의 체
- 세그먼트 트리
- 스프링 부트 crud 게시판 구현
- 유니온 파인드
- 알고리즘 공부
- 알고리즘
- HTML5
- 반복문
- 이분 매칭
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함