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
- 다이나믹 프로그래밍
- 투 포인터
- 스택
- BFS
- 자료구조
- 백준
- 우선순위 큐
- XR Interaction Toolkit
- 구현
- 알고리즘
- Unreal Engine 5
- 그리디 알고리즘
- c++
- 재귀
- 문자열
- 시뮬레이션
- 브루트포스
- 백트래킹
- VR
- 정렬
- DFS
- 유니티
- 다익스트라
- 수학
- ue5
- 그래프
- 누적 합
- 유니온 파인드
- Team Fortress 2
- 트리
Archives
- Today
- Total
1일1알
백준 2206번 벽 부수고 이동하기 C++ 본문
동일한 지점에 늦게 도착하더라도 벽을 부술 수 있는 기회가 남아있으면 벽을 부수지 못하는 먼저 도착한 경우보다 먼저 목적지까지 도달할 수 있기 때문에 방문 여부를 기록하는 배열을 벽을 부술 수 있는 상태에서 방문한 것과 부수지 못하는 상태에서 방문한 것 두 가지로 나눠서 문제를 해결하였다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
struct Info {
int row;
int col;
int dist;
int chance;
};
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
int n, m;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
vector<vector<int>> board(n, vector<int>(m));
vector<vector<bool>> visited_1(n, vector<bool>(m, false));
vector<vector<bool>> visited_2(n, vector<bool>(m, false));
for (int i = 0; i < n; i++) {
string str;
cin >> str;
for (int j = 0; j < m; j++) {
board[i][j] = str[j] - '0';
}
}
queue<Info> q;
q.push({ 0,0,1,1 });
visited_1[0][0] = true;
int ans = -1;
while (!q.empty()) {
auto curr = q.front();
q.pop();
if (curr.row == n - 1 && curr.col == m - 1) {
ans = curr.dist;
break;
}
for (int i = 0; i < 4; i++) {
int nextRow = curr.row + dRow[i];
int nextCol = curr.col + dCol[i];
if (nextRow < 0 || nextRow >= n) continue;
if (nextCol < 0 || nextCol >= m) continue;
if (curr.chance == 1) {
if (visited_1[nextRow][nextCol]) continue;
if (board[nextRow][nextCol] == 1) {
visited_1[nextRow][nextCol] = true;
q.push({ nextRow,nextCol,curr.dist + 1,curr.chance - 1 });
}
else {
visited_1[nextRow][nextCol] = true;
q.push({ nextRow,nextCol,curr.dist + 1,curr.chance });
}
}
else {
if (visited_2[nextRow][nextCol]) continue;
if (board[nextRow][nextCol] == 1) continue;
visited_2[nextRow][nextCol] = true;
q.push({ nextRow,nextCol,curr.dist + 1,curr.chance });
}
}
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 12886번 돌 그룹 C++ (0) | 2022.03.02 |
---|---|
백준 2617번 구슬 찾기 C++ (0) | 2022.03.01 |
백준 1987번 알파벳 C++ (0) | 2022.02.27 |
백준 2748번 피보나치 수 2 C++ (0) | 2022.02.26 |
백준 4577번 소코반 C++ (0) | 2022.02.25 |