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
- ue5
- XR Interaction Toolkit
- 유니티
- 브루트포스
- 알고리즘
- 백준
- 정렬
- VR
- 우선순위 큐
- 수학
- 자료구조
- 유니온 파인드
- 다이나믹 프로그래밍
- Team Fortress 2
- 트리
- c++
- 누적 합
- 그래프
- DFS
- 스택
- 백트래킹
- 문자열
- 투 포인터
- 구현
- 시뮬레이션
- Unreal Engine 5
- 재귀
- 그리디 알고리즘
- 다익스트라
- BFS
Archives
- Today
- Total
1일1알
백준 4963번 섬의 개수 C++ 본문
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 <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int dRow[8] = { -1,-1, 0, 1, 1, 1, 0,-1 };
int dCol[8] = { 0, 1, 1, 1, 0,-1,-1,-1 };
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
while (true) {
int w, h;
cin >> w >> h;
if (w == 0 && h == 0) break;
vector<vector<int>> board(h, vector<int>(w));
vector<vector<bool>> found(h, vector<bool>(w, false));
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
cin >> board[i][j];
}
}
int cnt = 0;
queue<pair<int, int>> q;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (board[i][j] == 0) continue;
if (found[i][j]) continue;
q.push({ i,j });
found[i][j] = true;
cnt++;
while (!q.empty()) {
auto curr = q.front();
q.pop();
for (int k = 0; k < 8; k++) {
int nextRow = curr.first + dRow[k];
int nextCol = curr.second + dCol[k];
if (nextRow < 0 || nextRow >= h) continue;
if (nextCol < 0 || nextCol >= w) continue;
if (board[nextRow][nextCol] == 0) continue;
if (found[nextRow][nextCol]) continue;
q.push({ nextRow,nextCol });
found[nextRow][nextCol] = true;
}
}
}
}
cout << cnt << "\n";
}
};
'알고리즘' 카테고리의 다른 글
백준 9935번 문자열 폭발 C++ (0) | 2022.03.28 |
---|---|
백준 2448번 별 찍기 - 11 C++ (0) | 2022.03.27 |
백준 1120번 문자열 C++ (0) | 2022.03.24 |
백준 1475번 방 번호 C++ (0) | 2022.03.23 |
백준 6198번 옥상 정원 꾸미기 C++ (0) | 2022.03.21 |