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
- Team Fortress 2
- VR
- 정렬
- 유니티
- 시뮬레이션
- XR Interaction Toolkit
- 다익스트라
- 다이나믹 프로그래밍
- 백트래킹
- 우선순위 큐
- ue5
- BFS
- 재귀
- 누적 합
- 그래프
- 알고리즘
- 문자열
- Unreal Engine 5
- 자료구조
- 브루트포스
- 유니온 파인드
- 수학
- 구현
- DFS
- 그리디 알고리즘
- 투 포인터
- 스택
- c++
- 트리
- 백준
Archives
- Today
- Total
1일1알
백준 17391번 무한부스터 C++ 본문
https://www.acmicpc.net/problem/17391
bfs로 풀었다. 이동 후 멈추면서 보유하고 있던 부스터 아이템은 모두 소진되기 때문에 방문 표시를 간단하게 할 수 있다.
#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 <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
struct Info {
int row;
int col;
int boost;
int moveCnt;
};
int dRow[2] = { 0,1 };
int dCol[2] = { 1,0 };
int n, m;
vector<vector<int>> board;
vector<vector<bool>> found;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
board = vector<vector<int>>(n, vector<int>(m));
found = vector<vector<bool>>(n, vector<bool>(m, false));
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> board[i][j];
}
}
queue<Info> q;
q.push({ 0,0,board[0][0],0 });
found[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.moveCnt;
break;
}
for (int i = 0; i < 2; i++) {
for (int j = 1; j <= curr.boost; j++) {
int nextRow = curr.row + dRow[i] * j;
int nextCol = curr.col + dCol[i] * j;
if (nextRow >= n || nextCol >= m) continue;
if (found[nextRow][nextCol]) continue;
found[nextRow][nextCol] = true;
q.push({ nextRow,nextCol,board[nextRow][nextCol],curr.moveCnt + 1 });
}
}
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 11663번 선분 위의 점 C++ (0) | 2023.01.11 |
---|---|
백준 18115번 카드 놓기 C++ (0) | 2023.01.10 |
백준 2785번 체인 C++ (1) | 2023.01.08 |
백준 3005번 크로스워드 퍼즐 쳐다보기 C++ (0) | 2023.01.07 |
백준 16437번 양 구출 작전 C++ (0) | 2023.01.06 |