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
- 재귀
- 유니티
- Unreal Engine 5
- 다이나믹 프로그래밍
- 문자열
- 백준
- 스택
- 자료구조
- 백트래킹
- 구현
- 정렬
- ue5
- 트리
- VR
- 그리디 알고리즘
- DFS
- 브루트포스
- Team Fortress 2
- 우선순위 큐
- 그래프
- 알고리즘
- 누적 합
- 다익스트라
- BFS
- c++
- 수학
- 시뮬레이션
- 투 포인터
- 유니온 파인드
Archives
- Today
- Total
1일1알
백준 14716번 현수막 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 main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int m, n;
cin >> m >> n;
int posR[8] = { -1,-1,0,1,1,1,0,-1 };
int posC[8] = { 0,1,1,1,0,-1,-1,-1 };
vector<vector<int>> v(m, vector<int>(n));
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
cin >> v[i][j];
}
}
int cnt = 0;
queue<pair<int, int>> q;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (v[i][j] == 1) {
cnt++;
q.push({ i,j });
v[i][j] = 0;
while (!q.empty()) {
auto a = q.front();
q.pop();
for (int k = 0; k < 8; k++) {
int nextRow = a.first + posR[k];
int nextCol = a.second + posC[k];
if (nextRow < 0 || nextRow >= m) continue;
if (nextCol < 0 || nextCol >= n) continue;
if (v[nextRow][nextCol] == 0) continue;
q.push({ nextRow,nextCol });
v[nextRow][nextCol] = 0;
}
}
}
}
}
cout << cnt;
};
'알고리즘' 카테고리의 다른 글
백준 18428번 감시 피하기 C++ (0) | 2021.11.27 |
---|---|
백준 1303번 전쟁-전투 C++ (0) | 2021.11.26 |
백준 15989번 1, 2, 3 더하기 4 C++ (0) | 2021.11.24 |
백준 21608번 상어 초등학교 C++ (0) | 2021.11.23 |
백준 9658번 돌 게임 4 C++ (0) | 2021.11.22 |