Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 브루트포스
- 스프링
- 404에러
- 2중포문
- 백트래킹
- 소트인사이드
- 소트
- 스택
- 덩치
- Backtracking
- 동적
- 스프링프레임워크
- DFS
- 정렬
- 통계학
- sort
- 다익스트라
- 그리디
- 파이썬
- 그리디알고리즘
- 최빈값
- 프로그래머스
- Python
- 코딩테스트
- 코테
- 퇴각검색
- 월간 코드 챌린지 시즌2
- 동적계획법
- 최단거리
- 백준
Archives
- Today
- Total
취준생의 코딩테스트 연습기
[백준] 7576번 토마토 / 파이썬(python) 본문
# 문제 링크
https://www.acmicpc.net/problem/7576
# Soultion
BFS를 사용하여 최단거리를 구하는 문제와 동일하다.
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
32
|
from collections import deque
m,n = map(int,input().split())
graph = []
queue = deque([])
for i in range(n):
graph.append(list(map(int,input().split())))
for j in range(m): #익은 토마토 큐에 저장
if graph[i][j]==1:
queue.append([i,j])
dx = [-1,1,0,0]
dy = [0,0,-1,1]
def bfs():
while queue:
x,y = queue.popleft()
for i in range(4):
a = x+dx[i]
b = y+dy[i]
if 0<=a<n and 0<=b<m and graph[a][b]==0:
queue.append([a,b])
graph[a][b] = graph[x][y]+1
bfs()
answ = 0
for i in graph:
for j in i:
if j==0:
print(-1)
exit(0)
answ = max(answ,max(i))
print(answ-1)
|
cs |
26. 최단거리를 graph에 다 표시한뒤, 0이 존재하면 -1을 출력한다.
31. 0이 존재하지않으면 최대값을 출력해준다. 이때, 처음을 1로 시작했으므로 -1을 빼준다.
Comments