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 |
Tags
- 애셋로드
- C++최적화
- UELOG
- unorder_map
- 알고리즘
- dataasset
- 람다
- 선택정렬
- 정렬
- 언리얼가비지컬렉터
- UE4 커스텀로그
- 크리티컬섹션
- enumasByue
- C++
- 프로그래머스
- UML관련
- UE_LOG
- 델리게이트
- map
- 정렬알고리즘
- 스마트포인터
- 약참조
- 자료구조
- 언리얼엔진구조체
- moreeffectiveC++
- 데이터애셋
- 강참조
- BFS
- stl
- 람다사용정렬
Archives
- Today
- Total
기억을 위한 기록들
[백준 7576: 토마토] - C++ 본문
#include<iostream>
#include<string>
#include<vector>
#include<queue>
#include<string.h>
using namespace std;
int n,m;
int map[1000][1000];
int dis[1000][1000];
bool check[1000][1000];
int dx[4] = { -1,0,1,0 };
int dy[4] = { 0,1,0,-1 };
int main() {
memset(dis, 0, sizeof(dis));
memset(check, false, sizeof(check));
cin >> m >> n;
int input = 0;
queue<pair<int, int>> Q;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cin >> input;
map[i][j] = input;
if (input == 1) {
Q.push({ i, j });
}
else if ( input == -1 ) {
dis[i][j] = -1;
}
}
}
int TotalDay = 0;
while (!Q.empty())
{
int xx = Q.front().first;
int yy = Q.front().second;
Q.pop();
for (int i = 0; i < 4; i++)
{
int nextX = xx + dx[i];
int nextY = yy + dy[i];
if (nextY < 0 || m <= nextY || nextX < 0 || n <= nextX)
{
continue;
}
if (map[nextX][nextY] == 0 && !check[nextX][nextY])
{
check[nextX][nextY] = true;
Q.push({ nextX,nextY });
if (TotalDay < dis[xx][yy] + 1)
TotalDay = dis[xx][yy] + 1;
dis[nextX][nextY] = dis[xx][yy] + 1;
}
}
}
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
if (check[i][j] == false && map[i][j] == 0) {
cout << -1 << endl;
return 0;
}
}
}
cout << TotalDay << endl;
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[백준 11724: 연결 요소의 개수] - C++ (0) | 2021.01.15 |
---|---|
[백준 1697: 숨바꼭질] - C++ (0) | 2021.01.14 |
[백준 2178 : 미로 탐색] - C++ (0) | 2021.01.13 |
[백준 1012 : 유기농 배추] - C++ (0) | 2021.01.12 |
[백준 2667 : 단지번호 붙이기] - C++ (0) | 2021.01.12 |