일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 11기
- 괄호
- 안드로이드
- 뒤로가기
- Python
- 6603
- expo
- itertools
- 매일11시
- 9095
- Kotlin
- permutation
- 파이썬
- Android
- LCS
- Combination
- lcm
- 최소공배수
- 순열
- 11054
- 11053
- 11057
- 1260
- 나머지
- 코테
- 1182
- 홈화면
- 백준
- 코틀린
- 앱
Archives
- Today
- Total
황소개발자
백준 7576 파이썬 python : 토마토 @@황소처럼 우직하게@@ 시간초과 해결 본문
반응형
리스트에서 pop할 때, 시간복잡도는 O(n) 이다.
그러나 콜렉션에 디큐에서 pop의 시간복잡도는 O(1) 로 구현되어있다.
import sys
from collections import deque
input = sys.stdin.readline
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
w, h = map(int, input().split())
mat = []
for i in range(h):
mat.append(list(map(int, input().split())))
q = deque()
for i in range(h):
for j in range(w):
if mat[i][j] == 1:
q.append([i, j])
def bfs():
global q
while q:
now = q.popleft()
for i in range(4):
ny = now[0] + dy[i]
nx = now[1] + dx[i]
if 0 <= nx < w and 0 <= ny < h and mat[ny][nx] == 0:
mat[ny][nx] = mat[now[0]][now[1]] + 1
q.append([ny, nx])
def go():
ans = 0
for i in range(h):
for j in range(w):
a = mat[i][j]
if a == 0:
print(-1)
return
ans = max(ans, a)
print(ans - 1)
bfs()
go()
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 14226 파이썬 python : 이모티콘 @@황소처럼 우직하게@@ 이게무슨.. (0) | 2020.03.03 |
---|---|
백준 1697 파이썬 python : 숨바꼭질 @@황소처럼 우직하게@@ (0) | 2020.03.03 |
백준 2178 파이썬 python : 미로 탐색 @@황소처럼 우직하게@@ (0) | 2020.03.03 |
백준 4963 파이썬 python : 섬의 개수 @@황소처럼 우직하게@@ 짜릿짜릿 (0) | 2020.03.03 |
백준 2667 파이썬 python : 단지번호붙이기 @@황소처럼 우직하게@@ (0) | 2020.03.02 |
Comments