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 |
Tags
- 디스코드 봇
- discord.js
- 파이썬
- 자료구조
- 갓생
- 크롬 확장자
- background script
- 2156
- 캠스터디
- nodejs
- 포도주시식
- 프로그래머스 #정수삼각형 #동적계획법
- content script
- Message Passing
- 백준 #7568번 #파이썬 #동적계획법
- 백준 7579
- react
- 백준
- Chrome Extension
- supabase
- popup
- 공부시간측정어플
- C언어로 쉽게 풀어쓴 자료구조
- webpack
- X
- TypeScript
- 크롬 익스텐션
- 동적계획법
Archives
- Today
- Total
히치키치
[백준] 4179번 : 불! - Python(파이썬) 본문
문제
https://www.acmicpc.net/problem/4179
요점
- 큐 : 불 좌표 -> 사람 좌표
- BFS 탐색 : 미로 나가기까지 최소 탐색 횟수
- 사람은 빈칸으로만 이동 가능
#문제: https://www.acmicpc.net/problem/4179
from sys import stdin
from collections import deque
input = stdin.readline
R, C = map(int, input().split())
a = [list(input().strip()) for _ in range(R)]
dist = [[0]*C for _ in range(R)]
q = deque()
for i in range(R):
for j in range(C):
if a[i][j] == 'J': #사람 위치
sx, sy = i, j
elif a[i][j] == 'F': #불 위치
q.append((i, j, 1)) #불부터 enque
dist[i][j] = 1 #불이 1초만에 갈 수 있는 거리
def bfs():
q.append((sx, sy, 0)) #사람 원래 위치 (사람 가장 마지막에 enque)
dist[sx][sy] = 1 #사람이 1초만에 갈 수 있는 거리
while q: #더이상 탐색할 불과 사람이 없을 때 까지
x, y, f = q.popleft()
for dx, dy in (-1, 0), (0, 1), (1, 0), (0, -1): #4 방향 탐색
nx, ny = x+dx, y+dy #이동
if nx < 0 or nx >= R or ny < 0 or ny >= C: #더이상 이동 불가능한 곳인 경우
if f: #다른 방향으로 이동
continue
print(dist[x][y])
return
if not dist[nx][ny] and a[nx][ny] != '#': #전에 방문한 적 없거나 빈 곳인 경우 도달 가능
q.append((nx, ny, f)) #새롭게 도달한 곳 추가
dist[nx][ny] = dist[x][y]+1 #도달 시간 추가
print("IMPOSSIBLE")
bfs()
'알고리즘 스터디' 카테고리의 다른 글
[백준] 2263번 : 트리의 순회 - Python(파이썬) (0) | 2021.08.03 |
---|---|
[백준] 1520번 : 내리막길 - Python(파이썬) (0) | 2021.08.03 |
[백준] 15685번 : 드래곤 커브 - Python(파이썬) (0) | 2021.07.13 |
[백준] 1967번 : 트리의 지름 - Python(파이썬) (0) | 2021.07.13 |
[백준] 1005번 : ACM Craft - Python(파이썬) (0) | 2021.07.13 |
Comments