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
- 다이나믹 프로그래밍
- 누적 합
- 투 포인터
- XR Interaction Toolkit
- ue5
- 다익스트라
- 구현
- Unreal Engine 5
- 시뮬레이션
- BFS
- 정렬
- c++
- 유니온 파인드
- 재귀
- VR
- 브루트포스
- Team Fortress 2
- 백트래킹
- 유니티
- 스택
- 트리
- 백준
- 자료구조
- 수학
- 우선순위 큐
- 알고리즘
- 문자열
- 그래프
- DFS
- 그리디 알고리즘
Archives
- Today
- Total
1일1알
백준 17086번 아기 상어 2 C++ 본문
https://www.acmicpc.net/problem/17086
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;
int n, m;
int ans = 0;
int dRow[8] = { -1,-1,0,1,1,1,0,-1 };
int dCol[8] = { 0,1,1,1,0,-1,-1,-1 };
struct Info {
int row;
int col;
int dist;
};
vector<vector<bool>> found;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
found = vector<vector<bool>>(n, vector<bool>(m, false));
queue<Info> q;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
int state;
cin >> state;
if (state == 1) {
found[i][j] = true;
q.push({ i,j,0 });
}
}
}
while (!q.empty()) {
auto curr = q.front();
q.pop();
ans = max(ans, curr.dist);
for (int i = 0; i < 8; 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 (found[nextRow][nextCol]) continue;
found[nextRow][nextCol] = true;
q.push({ nextRow,nextCol,curr.dist + 1 });
}
}
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 6443번 애너그램 C++ (0) | 2022.12.17 |
---|---|
백준 24040번 예쁜 케이크 C++ (0) | 2022.12.16 |
백준 12789번 도키도키 간식드리미 C++ (0) | 2022.12.14 |
백준 5545번 최고의 피자 C++ (0) | 2022.12.13 |
백준 1485번 정사각형 C++ (0) | 2022.12.12 |