일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- EOF
- string 함수
- Django Nodejs 차이점
- 엑셀
- 연결요소
- 프레임워크와 라이브러리의 차이
- 시간복잡도
- 이분그래프
- correlation coefficient
- Django의 편의성
- 장고란
- string 메소드
- vscode
- iOS14
- 입/출력
- k-eta
- 입출력 패턴
- 백준
- 알고리즘 공부방법
- 2557
- Django란
- scanf
- getline
- c++
- 표준 입출력
- 매크로
- UI한글변경
- 자료구조
- 구조체와 클래스의 공통점 및 차이점
- double ended queue
Archives
- Today
- Total
Storage Gonie
(10) [C++, Java] 백준 No.7576 : 토마토 본문
반응형
문제
풀이
자세한 풀이 : https://ldgeao99.tistory.com/400
# C++
#include<cstdio>
#include<queue>
using namespace std;
int place[1001][1001]; // -1 : 이동할 수 없는 칸, 0 : 이동할 수 있는 칸, 1 : 이동할 수 있는 칸
int dist[1001][1001]; // -1 : 방문하지 않음, 0 이상은 방문했으며 익은 토마토 로부터의 거리를 의미
int dx[4] = {0, -1, 0, 1};
int dy[4] = {-1, 0, 1, 0};
int w, h;
int main()
{
// 데이터 입력받기
scanf("%d %d", &w, &h);
// 사용전 배열 초기화
for(int i = 1; i <= h; i++){
for(int j = 1; j <= w; j++){
place[i][j] = 0;
dist[i][j] = -1;
}
}
for(int i = 1; i <= h; i++){
for(int j = 1; j <= w; j++){
scanf("%d", &place[i][j]);
}
}
//여러개의 시작점을 큐에 넣어줌.
queue<pair<int, int>> q;
for(int i = 1; i <= h; i++){
for(int j = 1; j <= w; j++){
if(place[i][j] == 1){
q.push(make_pair(i, j));
dist[i][j] = 0;
}
}
}
//BFS탐색 시작
while(!q.empty()){
pair<int, int> p = q.front();
q.pop();
int cx = p.first;
int cy = p.second;
for(int k = 0; k < 4; k++){
int nx = cx + dx[k];
int ny = cy + dy[k];
if(nx >= 1 && nx <= h && ny >= 1 && ny <= w){
// printf("%d %d*\n", nx, ny);
// printf("%d %d*\n", place[nx][ny], dist[nx][ny]);
if(place[nx][ny] == 0 && dist[nx][ny] == -1){
q.push(make_pair(nx, ny));
dist[nx][ny] = dist[cx][cy] + 1;
}
}
}
}
//최대값 구하기
int ans = 0;
bool is_all_done = true; // 존재하는 토마토가 다 익었나
for(int i = 1; i <= h; i++){
for(int j = 1; j <= w; j++){
if (ans < dist[i][j])
ans = dist[i][j];
if (dist[i][j] == -1 && place[i][j] == 0)
is_all_done = false;
}
}
if (is_all_done){
printf("%d\n", ans);
}
else{
printf("-1\n");
}
}
# Java
import java.util.*;
class Pair {
int x;
int y;
Pair(int x, int y) {
this.x = x;
this.y = y;
}
}
public class Main {
public static final int[] dx = {0, 0, 1, -1};
public static final int[] dy = {1, -1, 0, 0};
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int m = sc.nextInt();
int n = sc.nextInt();
int[][] a = new int[n][m];
int[][] dist = new int[n][m];
Queue<Pair> q = new LinkedList<Pair>();
for (int i=0; i<n; i++) {
for (int j=0; j<m; j++) {
a[i][j] = sc.nextInt();
dist[i][j] = -1;
if (a[i][j] == 1) {
q.add(new Pair(i, j));
dist[i][j] = 0;
}
}
}
while (!q.isEmpty()) {
Pair p = q.remove();
int x = p.x;
int y = p.y;
for (int k=0; k<4; k++) {
int nx = x+dx[k];
int ny = y+dy[k];
if (0 <= nx && nx < n && 0 <= ny && ny < m) {
if (a[nx][ny] == 0 && dist[nx][ny] == -1) {
q.add(new Pair(nx, ny));
dist[nx][ny] = dist[x][y] + 1;
}
}
}
}
int ans = 0;
for (int i=0; i<n; i++) {
for (int j=0; j<m; j++) {
if (ans < dist[i][j]) {
ans = dist[i][j];
}
}
}
for (int i=0; i<n; i++) {
for (int j=0; j<m; j++) {
if (a[i][j] == 0 && dist[i][j] == -1) {
ans = -1;
}
}
}
System.out.println(ans);
}
}
반응형
'알고리즘 > 백준풀이9. 그래프' 카테고리의 다른 글
(11) [C++, Java] 백준 No.2146 : 다리 만들기 (0) | 2019.06.02 |
---|---|
(9) [C++, Java] 백준 No.2178 : 미로탐색 (0) | 2019.06.01 |
(8) [C++, Java] 백준 No.4963 : 섬의 개수 (0) | 2019.06.01 |
(7) [C++, Java] 백준 No.2667 : 단지번호붙이기 (0) | 2019.05.31 |
(6) [C++] 백준 No.9466 : 텀 프로젝트 (0) | 2019.05.31 |
Comments