티스토리 뷰
https://www.acmicpc.net/problem/7576
백준 소스코드 [C++] 7576 토마토
#include <iostream>
#include <utility>
#include <vector>
#include <algorithm>
#include <queue>
#include <string.h>
using namespace std;
int arr[1002][1002];
pair<int, int>direction[4] = { {-1,0},{1,0},{0,1} ,{0,-1} };
queue<pair<int, int> > q;
int num = 0;
int day = -1;
pair<int, int> v[1000001];
void bfs() {
while (q.empty() != true) {
int b = 0;
while (q.empty() != true) {
v[b] = q.front();
q.pop();
b++;
}
day++;
for (int i = 0;i < b;i++) {
for (int a = 0;a < 4;a++)
if (arr[v[i].first + direction[a].first][v[i].second + direction[a].second] == 0)
{
q.push({ v[i].first + direction[a].first, v[i].second + direction[a].second });
arr[v[i].first + direction[a].first][v[i].second + direction[a].second] = 1;
num++;
}
}
}
return;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, m;
int a = 0;
cin >> m >> n;
for (int i = 0;i < 1002;i++)for (int j = 0;j < 1002;j++)arr[i][j] = -1;
for (int j = 1;j <= n;j++)
for (int i = 1;i <= m;i++) {
cin >> arr[j][i];
if (arr[j][i] == 1) {
q.push({ j,i });
num++;
}
else if (arr[j][i] == -1)a++;
}
bfs();
if (num == n * m - a) cout << day;
else cout << "-1";
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 11051 이항 계수 2 (0) | 2020.08.17 |
---|---|
백준 소스코드 [C++] 11047 동전 0 (0) | 2020.08.17 |
백준 소스코드 [C++] 7569 토마토 (0) | 2020.08.17 |
백준 소스코드 [C++] 2667 단지번호붙이기 (0) | 2020.08.17 |
백준 소스코드 [C++] 2178 미로 탐색 (0) | 2020.08.17 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- WWDC21
- IOS
- WWDC19
- 강한 순환 참조
- 컴퓨터 추상화
- MeTal
- 벨만포드 시간복잡도
- 포드 풀커슨 알고리즘
- 코딩대회
- mach-o
- 네트워크 플로우
- 네트워크 유량
- State Restoration
- HIG
- test coverage
- 벨만포드 알고리즘
- 최단경로 문제
- CompositionalLayout
- 최단경로 알고리즘
- 부스트캠프 6기
- 에드몬드 카프 알고리즘
- WWDC16
- Testable
- CPU와 Memory
- 다익스트라 시간복잡도
- rxswift
- 최단경로문제
- WWDC17
- observeOn
- 최대 매칭
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함