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
- ue5
- 정렬
- Team Fortress 2
- 백준
- 투 포인터
- 그리디 알고리즘
- 다익스트라
- 수학
- c++
- XR Interaction Toolkit
- 구현
- Unreal Engine 5
- 트리
- 재귀
- 그래프
- 유니온 파인드
- 알고리즘
- 백트래킹
- 브루트포스
- DFS
- 문자열
- VR
Archives
- Today
- Total
1일1알
백준 4179번 불! C++ 본문
https://kjhcocomi.tistory.com/301
이문제랑 거의 똑같다.
#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;
int r, c;
vector<vector<char>> board;
vector<vector<bool>> found;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
enum Type {
Player,
Fire
};
struct Info {
int row;
int col;
int moveCnt;
Type type;
};
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> r >> c;
board = vector<vector<char>>(r, vector<char>(c));
found = vector<vector<bool>>(r, vector<bool>(c, false));
vector<pair<int, int>> fire;
pair<int, int> start;
for (int i = 0; i < r; i++) {
for (int j = 0; j < c; j++) {
cin >> board[i][j];
if (board[i][j] == 'F')
fire.push_back({ i,j });
else if (board[i][j] == 'J')
start = { i,j };
}
}
queue<Info> q;
for (auto a : fire) {
q.push({ a.first,a.second,0,Fire });
}
q.push({ start.first,start.second,0,Player });
found[start.first][start.second] = true;
int ans = -1;
bool loop = true;
while (!q.empty()) {
auto curr = q.front();
q.pop();
for (int i = 0; i < 4; i++) {
int nextRow = curr.row + dRow[i];
int nextCol = curr.col + dCol[i];
if (nextRow < 0 || nextRow >= r || nextCol < 0 || nextCol >= c) {
if (curr.type == Player) {
ans = curr.moveCnt + 1;
loop = false;
break;
}
continue;
}
if (board[nextRow][nextCol] == '#') continue;
if (board[nextRow][nextCol] == 'F') continue;
if (curr.type == Fire) board[nextRow][nextCol] = 'F';
else {
if (found[nextRow][nextCol]) continue;
found[nextRow][nextCol] = true;
}
q.push({ nextRow,nextCol,curr.moveCnt + 1,curr.type });
}
if (!loop) break;
}
if (ans == -1) cout << "IMPOSSIBLE";
else cout << ans;
cout << "\n";
}
'알고리즘' 카테고리의 다른 글
백준 16637번 괄호 추가하기 C++ (0) | 2022.08.23 |
---|---|
백준 2661번 좋은수열 C++ (0) | 2022.08.22 |
백준 17471번 게리맨더링 C++ (0) | 2022.08.20 |
백준 2458번 키 순서 C++ (0) | 2022.08.19 |
백준 5427번 불 C++ (0) | 2022.08.18 |