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
- VR
- 자료구조
- 그래프
- 재귀
- 브루트포스
- 스택
- 수학
- 시뮬레이션
- c++
- 투 포인터
- BFS
- DFS
- 그리디 알고리즘
- ue5
- 구현
- 정렬
- 문자열
- 유니티
- 다이나믹 프로그래밍
- XR Interaction Toolkit
- 백준
- 알고리즘
- 누적 합
- Team Fortress 2
- 백트래킹
- 트리
- 우선순위 큐
- Unreal Engine 5
- 유니온 파인드
- 다익스트라
Archives
- Today
- Total
1일1알
백준 13565번 침투 C++ 본문
https://www.acmicpc.net/problem/13565
bfs/dfs
#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 dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
int m, n;
vector<vector<char>> board;
vector<vector<bool>> found;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> m >> n;
board = vector<vector<char>>(m, vector<char>(n));
found = vector<vector<bool>>(m, vector<bool>(n, false));
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
cin >> board[i][j];
}
}
queue<pair<int, int>> q;
for (int i = 0; i < n; i++) {
if (board[0][i] == '1') continue;
q.push({ 0,i });
found[0][i] = true;
}
bool ans = false;
while (!q.empty()) {
auto curr = q.front();
q.pop();
if (curr.first == m - 1) {
ans = true;
break;
}
for (int i = 0; i < 4; i++) {
int nextRow = curr.first + dRow[i];
int nextCol = curr.second + dCol[i];
if (nextRow < 0 || nextRow >= m) continue;
if (nextCol < 0 || nextCol >= n) continue;
if (board[nextRow][nextCol] == '1') continue;
if (found[nextRow][nextCol]) continue;
q.push({ nextRow,nextCol });
found[nextRow][nextCol] = true;
}
}
if (ans) cout << "YES";
else cout << "NO";
}
'알고리즘' 카테고리의 다른 글
백준 14921번 용액 합성하기 C++ (0) | 2023.01.27 |
---|---|
백준 6068번 시간 관리하기 C++ (1) | 2023.01.26 |
백준 2784번 가로 세로 퍼즐 C++ (0) | 2023.01.24 |
백준 2866번 문자열 잘라내기 C++ (0) | 2023.01.20 |
백준 1138번 한 줄로 서기 C++ (0) | 2023.01.19 |