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
- XR Interaction Toolkit
- 다이나믹 프로그래밍
- DFS
- 정렬
- 투 포인터
- Unreal Engine 5
- ue5
- 유니티
- 수학
- 브루트포스
- 백준
- 알고리즘
- 다익스트라
- 트리
- c++
- 그리디 알고리즘
- 시뮬레이션
- BFS
- 자료구조
- 우선순위 큐
- 누적 합
- 백트래킹
- 스택
- 문자열
- 구현
- 재귀
- 그래프
- Team Fortress 2
- 유니온 파인드
Archives
- Today
- Total
1일1알
백준 2638번 치즈 C++ 본문
가장자리에는 치즈가 놓이지 않기 때문에 0,0에서 빈 공간을 bfs로 탐색하면서 바깥쪽 공기를 검사한 뒤 치즈가 바깥쪽 공기와 2개의 면 이상 닿아있다면 녹도록 했다.
#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 dRow[4] = { -1,0,1,0 };
int dCol[4] = { 0,1,0,-1 };
vector<vector<int>> board;
vector<vector<bool>> visited;
vector<vector<bool>> isOut;
void Refresh() {
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
visited[i][j] = false;
isOut[i][j] = false;
}
}
}
void BfsCheckOut() {
queue<pair<int, int>> q;
q.push({ 0,0 });
visited[0][0] = true;
isOut[0][0] = true;
while (!q.empty()) {
auto curr = q.front();
q.pop();
for (int i = 0; i < 4; i++) {
int nextRow = curr.first + dRow[i];
int nextCol = curr.second + dCol[i];
if (nextRow < 0 || nextRow >= n) continue;
if (nextCol < 0 || nextCol >= m) continue;
if (board[nextRow][nextCol] == 1) continue;
if (visited[nextRow][nextCol]) continue;
visited[nextRow][nextCol] = true;
isOut[nextRow][nextCol] = true;
q.push({ nextRow,nextCol });
}
}
}
bool CheckCheese(int row, int col) {
int contectAir = 0;
for (int i = 0; i < 4; i++) {
int nextRow = row + dRow[i];
int nextCol = col + dCol[i];
if (board[nextRow][nextCol] == 1) continue;
if (!isOut[nextRow][nextCol]) continue;
contectAir++;
}
if (contectAir >= 2) return true;
return false;
}
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));
visited = vector<vector<bool>>(n, vector<bool>(m, false));
isOut = 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];
}
}
int ans = 0;
while (true) {
Refresh();
BfsCheckOut();
bool isCheeseExsist = false;
vector<pair<int, int>> meltCheeses;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (board[i][j] == 0) continue;
isCheeseExsist = true;
if (CheckCheese(i, j))
meltCheeses.push_back({ i,j });
}
}
if (!isCheeseExsist) break;
for (auto cheese : meltCheeses) {
int row = cheese.first;
int col = cheese.second;
board[row][col] = 0;
}
ans++;
}
cout << ans;
};
'알고리즘' 카테고리의 다른 글
백준 2166번 다각형의 면적 C++ (0) | 2022.06.30 |
---|---|
백준 10830번 행렬 제곱 C++ (0) | 2022.06.29 |
백준 11779번 최소비용 구하기 2 C++ (0) | 2022.06.27 |
백준 1238번 파티 C++ (0) | 2022.06.26 |
백준 14938번 서강그라운드 C++ (0) | 2022.06.25 |