티스토리 뷰
https://www.acmicpc.net/problem/7576
#include<iostream>
#include<queue>
#include<utility>
#include<vector>
using namespace std;
int M, N;
int direct[4][2] = { { 1,0 },{ -1,0 },{ 0,1 },{ 0,-1 } };
vector<vector<int>> Tomato;
queue<pair<int, int>> Q;
void BFS() {
while (!Q.empty()) {
pair<int, int> know = Q.front();
Q.pop();
for (int i = 0; i < 4; i++) {
int n = know.first + direct[i][0];
int m = know.second + direct[i][1];
if (0 <= n && n < N && 0 <= m && m < M &&Tomato[n][m] != -1) {
if (Tomato[n][m] == 0 || Tomato[n][m] > Tomato[know.first][know.second] + 1) {
Q.push(make_pair(n, m));
Tomato[n][m] = Tomato[know.first][know.second] + 1;
}
}
}
}
}
int main(void) {
//입력
cin >> M >> N;
for (int i = 0; i < N; i++) {
vector<int> temp;
for (int j = 0; j < M; j++) {
int x;
cin >> x;
temp.push_back(x);
}
Tomato.push_back(temp);
}
//BFS 호출
for (int i = 0; i < Tomato.size(); i++) {
for (int j = 0; j < Tomato[i].size(); j++) {
if (Tomato[i][j] == 1)
Q.push(make_pair(i, j));
}
}
BFS();
//정답출력
int max = 0;
for (int i = 0; i < Tomato.size(); i++) {
for (int j = 0; j < Tomato[i].size(); j++) {
if (Tomato[i][j] > max)
max = Tomato[i][j];
if (Tomato[i][j] == 0) {
cout << -1 << endl;
return 0;
}
}
}
if (max == 1)
cout << 0 << endl;
else
cout << max - 1 << endl;
}
'Algorithm > 유형별 : BFS, DFS' 카테고리의 다른 글
[C++] [DFS] 백준 11724번 : 연결 요소의 개수 (0) | 2020.02.02 |
---|---|
[C++] [DFS] 백준 1012번 : 유기농 배추 (0) | 2020.02.02 |
[C++] [BFS] 백준 3187번 : 양치기 꿍 (0) | 2020.02.02 |
[C++] [BFS] 백준 1697번 : 숨바꼭질 (0) | 2020.02.02 |
[C++] [BFS] 백준 2178번 : 미로 탐색 (0) | 2019.11.14 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Delete
- java
- 상속
- 객체
- 캡슐화
- 객체지향
- Update
- select
- controller
- INSERT
- view
- MVC
- Oracle
- 다형성
- JDBC 프로그램 작성단계
- 추상화
- Scott/Tiger
- .
- JdbcTemplate
- jdbc
- model
- ojdbc6.jar
- OOP
- java 환경설정
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함