Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- BFS
- 약참조
- 델리게이트
- moreeffectiveC++
- 강참조
- 알고리즘
- 데이터애셋
- 자료구조
- 정렬알고리즘
- stl
- UML관련
- dataasset
- 스마트포인터
- 프로그래머스
- 크리티컬섹션
- enumasByue
- 정렬
- 선택정렬
- unorder_map
- C++
- map
- UELOG
- 람다사용정렬
- 람다
- C++최적화
- 언리얼가비지컬렉터
- 애셋로드
- 언리얼엔진구조체
- UE4 커스텀로그
- UE_LOG
Archives
- Today
- Total
기억을 위한 기록들
[백준 1012 : 유기농 배추] - C++ 본문
#include <iostream>
#include <string>
#include <vector>
#include <queue>
#include <string.h> //memset 용
using namespace std;
struct Location
{
int x;
int y;
Location(int _x, int _y)
{
x = _x;
y = _y;
}
};
int main()
{
int map[50][50];
memset(map, 0, sizeof(map)); //초기화
int M, N, K;
int dx[4] = { -1,0,1,0 }; //4방향용
int dy[4] = { 0,1,0,-1 }; //4방향용
int test= 0;
cin >> test;
for (int e=0; e < test; e++) {
cin >> M >> N >> K;
int a, b;
for (int i = 0; i < K; i++)
{
cin >> a >> b;
map[a][b] = 1;
}
queue<Location> Q;
int Cnt = 0;
for (int i = 0; i < M; i++)
{
for (int j = 0; j < N; j++)
{
if (map[i][j] == 1)
{
map[i][j] = 0;
Q.push(Location(i, j));
while (!Q.empty())
{
Location tmp = Q.front();
Q.pop();
for (int k = 0; k < 4; k++)
{
int xx = dx[k] + tmp.x;
int yy = dy[k] + tmp.y;
if (xx < 0 || M <= xx || yy < 0 || N <= yy)
continue;
if (map[xx][yy] == 1)
{
map[xx][yy] = 0;
Q.push(Location(xx, yy));
}
}
}
Cnt++;
}
}
}
cout << Cnt << endl;
}
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[백준 1697: 숨바꼭질] - C++ (0) | 2021.01.14 |
---|---|
[백준 7576: 토마토] - C++ (0) | 2021.01.13 |
[백준 2178 : 미로 탐색] - C++ (0) | 2021.01.13 |
[백준 2667 : 단지번호 붙이기] - C++ (0) | 2021.01.12 |
송아지찾기(BFS) (0) | 2021.01.08 |