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++
- 구현
- 알고리즘
- XR Interaction Toolkit
- ue5
- 시뮬레이션
- 그래프
- 정렬
- Unreal Engine 5
- 다이나믹 프로그래밍
- 스택
- 누적 합
- 백트래킹
- 재귀
- 투 포인터
- DFS
- 수학
- 트리
- BFS
- 우선순위 큐
- 브루트포스
- 자료구조
- 다익스트라
- Team Fortress 2
Archives
- Today
- Total
1일1알
백준 1743번 음식물 피하기 C++ 본문
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 <unordered_map>
#include <unordered_set>
using namespace std;
typedef long long ll;
int n, m, k;
int max_trash = 0;
vector<vector<bool>> trash(100, vector<bool>(100, false));
int posR[4] = { -1,0,1,0 };
int posC[4] = { 0,1,0,-1 };
void bfs() {
queue<pair<int, int>> q;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (trash[i][j]) {
int size = 0;
q.push({ i,j });
trash[i][j] = false;
while (!q.empty()) {
auto a = q.front();
q.pop();
size++;
for (int i = 0; i < 4; i++) {
int nextRow = a.first + posR[i];
int nextCol = a.second + posC[i];
if (nextRow < 0 || nextRow >= n) continue;
if (nextCol < 0 || nextCol >= m) continue;
if (!trash[nextRow][nextCol]) continue;
q.push({ nextRow, nextCol });
trash[nextRow][nextCol] = false;
}
}
max_trash = max(max_trash, size);
}
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m >> k;
int row, col;
for (int i = 0; i < k; i++) {
cin >> row >> col;
trash[row - 1][col - 1] = true;
}
bfs();
cout << max_trash;
};
'알고리즘' 카테고리의 다른 글
백준 2110번 공유기 설치 C++ (0) | 2021.12.13 |
---|---|
백준 2343번 기타 레슨 C++ (0) | 2021.12.12 |
백준 2302 극장 좌석 C++ (0) | 2021.12.10 |
백준 2251번 물통 C++ (0) | 2021.12.09 |
백준 1446번 지름길 C++ (0) | 2021.12.08 |