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
- command not found
- hackerank
- 트랜잭션 관리
- 데이터베이스 배움터
- 언리얼 커스텀 플러그인
- 오손데이터읽기
- 의미와 무의미의 경계에서
- oracle
- 1967번
- UnrealMP
- 2단계로킹
- Linux
- objtofbx
- SQL
- C++
- FBX
- 민겸수
- 셰그먼트트리
- 비재귀셰그먼트
- 실습
- UActor
- 언리얼 플러그인
- Unreal
- 1759번
- OS
- 백준 1253번
- 5639
- 백준
- Security
- 1253번
Archives
- Today
- Total
fatalite
섬의 개수 - 4963번 백준 본문
문제
문제 난이도: 실버 2
문제 분류: BFS 혹은 DFS
문제 풀이 및 코드
#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <queue>
using namespace std;
vector<vector<bool>> Visited;
vector<vector<bool>> Map;
int LandNum()
{
queue<pair<int, int>> q;
for (int h = 0; h < Map.size(); ++h)
{
for (int w = 0; w < Map[h].size(); ++w)
{
if (Map[h][w] == true)
{
q.push({ h, w });
}
}
}
int Count = 0;
while (!q.empty())
{
pair<int, int> p = q.front();
q.pop();
if (Visited[p.first][p.second] == true) continue;
queue<pair<int, int>> qq;
qq.push({ p.first ,p.second });
while (!qq.empty())
{
pair<int, int> pp = qq.front();
qq.pop();
if (Visited[pp.first][pp.second] == true) continue;
Visited[pp.first][pp.second] = true;
if (pp.first > 0)
{
qq.push({ pp.first - 1 , pp.second });
}
if (pp.first < Map.size() - 1)
{
qq.push({ pp.first + 1 , pp.second });
}
if (pp.second > 0)
{
qq.push({ pp.first , pp.second - 1 });
}
if (pp.second < Map[0].size() - 1)
{
qq.push({ pp.first , pp.second + 1 });
}
if (pp.second > 0 && pp.first > 0)
{
qq.push({ pp.first - 1, pp.second - 1 });
}
if (pp.second < Map[0].size() - 1 && pp.first > 0)
{
qq.push({ pp.first - 1, pp.second + 1 });
}
if (pp.second > 0 && pp.first < Map.size() - 1)
{
qq.push({ pp.first + 1, pp.second - 1 });
}
if (pp.second < Map[0].size() - 1 && pp.first < Map.size() - 1)
{
qq.push({ pp.first + 1, pp.second + 1 });
}
}
Count++;
}
return Count;
}
void Init()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
int main()
{
//Initialize
Init();
//Input
vector<int> AnswerVec;
while (true)
{
int w, h = 0;
cin >> w >> h;
if (w == 0 && h == 0)
{
break;
}
else
{
vector<vector<bool>> ThisMap(h, vector<bool>(w, false));
vector<vector<bool>> ThisVisited(h, vector<bool>(w, false));
for (int i = 0; i < h; i++)
{
for (int j = 0; j < w; j++)
{
bool Tmp;
cin >> Tmp;
ThisMap[i][j] = Tmp;
ThisVisited[i][j] = !Tmp;
}
}
Map = ThisMap;
Visited = ThisVisited;
AnswerVec.push_back(LandNum());
}
}
for (int i : AnswerVec)
{
cout << i << "\n";
}
}
'코딩 인터뷰 > C++' 카테고리의 다른 글
구간 합 구하기 - 2042번 백준 (0) | 2023.10.01 |
---|---|
🏳 겹치는 건 싫어 - 20922번 백준 (2) | 2023.09.16 |
점프 점프 - 11060번 백준 (0) | 2023.09.14 |
🏳 쉬운 계단 수 / 10844번 백준 (0) | 2023.09.10 |
연속합 / 1912번 백준 (0) | 2023.09.09 |