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
- 트리
- 다익스트라
- Unreal Engine 5
- 유니티
- BFS
- 재귀
- 자료구조
- 투 포인터
- ue5
- 정렬
- c++
- 그래프
- 수학
- XR Interaction Toolkit
- 스택
- 백준
- 유니온 파인드
- 문자열
- 우선순위 큐
- 알고리즘
- 구현
- Team Fortress 2
- VR
- 누적 합
- 다이나믹 프로그래밍
- 백트래킹
- DFS
- 그리디 알고리즘
- 브루트포스
- 시뮬레이션
Archives
- Today
- Total
1일1알
백준 16469번 소년 점프 C++ 본문
https://www.acmicpc.net/problem/16469
bfs
#include <iostream>
#include <vector>
#include <algorithm>
#include <stack>
#include <queue>
#include <map>
using namespace std;
int r, c;
int dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
vector<vector<int>> board;
vector<vector<bool>> ansBoard;
vector<vector<vector<bool>>> found;
struct Info {
int row;
int col;
int id;
int moveCnt;
};
int main()
{
cin >> r >> c;
board = vector<vector<int>>(r, vector<int>(c));
ansBoard = vector<vector<bool>>(r, vector<bool>(c, false));
found = vector<vector<vector<bool>>>(r, vector<vector<bool>>(c, vector<bool>(3, false)));
for (int i = 0; i < r; i++) {
string str;
cin >> str;
for (int j = 0; j < c; j++) {
board[i][j] = str[j] - '0';
}
}
queue<Info> q;
for (int i = 0; i < 3; i++) {
int row, col;
cin >> row >> col;
q.push({ row - 1,col - 1,i,0 });
found[row - 1][col - 1][i] = true;
}
int ans = 987654321;
int cnt = 0;
while (!q.empty()) {
Info 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) continue;
if (nextCol < 0 || nextCol >= c) continue;
if (found[nextRow][nextCol][curr.id]) continue;
if (board[nextRow][nextCol] == 1) continue;
found[nextRow][nextCol][curr.id] = true;
q.push({ nextRow,nextCol,curr.id,curr.moveCnt + 1 });
int foundCnt = 0;
for (int j = 0; j < 3; j++) {
if (found[nextRow][nextCol][j]) foundCnt++;
}
if (foundCnt < 3) continue;
if (ansBoard[nextRow][nextCol] == false) {
if (ans == curr.moveCnt + 1) {
cnt++;
}
if (ans > curr.moveCnt + 1) {
ans = curr.moveCnt + 1;
cnt = 1;
}
ansBoard[nextRow][nextCol] = true;
}
}
}
if (ans == 987654321) cout << -1;
else cout << ans << "\n" << cnt;
}
'알고리즘' 카테고리의 다른 글
백준 15789번 CTP 왕국은 한솔 왕국을 이길 수 있을까? C++ (1) | 2022.10.29 |
---|---|
백준 25195번 Yes or yes C++ (0) | 2022.10.28 |
백준 3474번 교수가 된 현우 C++ (0) | 2022.10.26 |
백준 14426번 접두사 찾기 C++ (0) | 2022.10.25 |
백준 15724번 주지수 C++ (0) | 2022.10.24 |