반응형
250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 프로그래머스 고득점 kit
- 유니온 파인드
- 삼성청년sw아카데미
- git
- 백준7576 bfs
- 삼성 청년 SW 아카데미
- 코딩 교육
- SSAFY
- 백준
- 이코테
- 코딩교육
- SSAFYcial
- 싸피 7기 입학식
- bfs
- SWEA
- Learning
- DP
- ssafy 7기 합격
- 프로그래머스
- pytorch
- React
- 웹 표준 사이트 만들기
- 전이학습
- dfs
- 알고리즘
- SSAFY 입학식
- SSAFY 8기
- ssafy 7기 교수님
- DenseNet
- ssafy 7기
Archives
- Today
- Total
개미의 개열시미 프로그래밍
[알고리즘] 백준16973 직사각형 탈출 - 파이썬 본문
728x90
반응형
https://www.acmicpc.net/problem/16973
[틀린 풀이 코드]
from collections import deque
from sys import stdin
input = stdin.readline
N, M = map(int, input().split())
graph = []
for _ in range(N):
graph.append(list(map(int, input().split())))
H, W, Sr, Sc, Fr, Fc = map(int, input().split())
visited = [[False] * M for _ in range(N)]
dy = [-1, 1, 0, 0]
dx = [0, 0, -1, 1]
# 시간초과 원인 : bfs함수안에서 직사각형이 격자안에만 들어간다면 계속 이 함수가 실행됨
def check(i, j):
flag = True
for a in range(H):
for b in range(W):
if graph[i+a][j+b] == 1:
flag = False
return flag
def bfs():
q = deque()
q.append((Sr - 1, Sc - 1, 0))
while q:
y, x, cnt = q.popleft()
visited[y][x] = True
if y == Fr-1 and x == Fc-1:
print(cnt)
return
for l in range(4):
yy = dy[l] + y
xx = dx[l] + x
# 직사각형 범위계산
if 0 <= yy < N and 0 <= xx < M and 0 <= yy + H - 1 < N and 0 <= xx + W - 1 < M:
if not visited[yy][xx]:
# yy, yy+H-1, xx, xx+W-1 중에 1이 있다면 못들어감
if check(yy, xx):
visited[yy][xx] = True
q.append((yy, xx, cnt+1))
print(-1)
return
bfs()
- 시간 초과가 났는데 코드를 살펴보니 check함수 부분에서 탐색하는 시간이 너무 걸리는 것 같았다.
- 벽을 미리 리스트에 저장한 뒤 check함수는 직사각형 범위 안에 있으면 큐에 저장이 안 되도록 변경했더니 정답처리가 되었다.
[정답 풀이 코드]
from collections import deque
from sys import stdin
input = stdin.readline
N, M = map(int, input().split())
graph = []
for _ in range(N):
graph.append(list(map(int, input().split())))
H, W, Sr, Sc, Fr, Fc = map(int, input().split())
visited = [[False] * M for _ in range(N)]
dy = [-1, 1, 0, 0]
dx = [0, 0, -1, 1]
# 시간초과를 막기 위해 미리 벽을 저장해둔다.
walls = []
for i in range(N):
for j in range(M):
if graph[i][j] == 1:
walls.append((i, j))
# 저장해둔 벽이 직사각형 범위 내에 있다면 False를 반환
def check(i, j):
for w_row, w_col in walls:
if i <= w_row < i+H and j <= w_col < j+W:
return False
return True
def bfs():
q = deque()
q.append((Sr - 1, Sc - 1, 0))
while q:
y, x, cnt = q.popleft()
visited[y][x] = True
if y == Fr-1 and x == Fc-1:
print(cnt)
return
for l in range(4):
yy = dy[l] + y
xx = dx[l] + x
# 직사각형 범위계산
if 0 <= yy < N and 0 <= xx < M and 0 <= yy + H - 1 < N and 0 <= xx + W - 1 < M:
if not visited[yy][xx]:
if check(yy, xx):
visited[yy][xx] = True
q.append((yy, xx, cnt+1))
print(-1)
return
bfs()
728x90
반응형
'알고리즘 > DFS, BFS, 백트래킹' 카테고리의 다른 글
[알고리즘] 백준4179 불! - 파이썬 (2) | 2021.12.17 |
---|---|
[알고리즘] 백준16932 모양만들기 - 파이썬 (0) | 2021.12.17 |
[알고리즘] 백준10971 외판원 순회2 - 파이썬 (0) | 2021.12.15 |
[알고리즘] 백준1182 부분수열의 합 - 파이썬 (0) | 2021.12.14 |
[알고리즘] 백준15649 N과 M (1) - 파이썬 (0) | 2021.12.13 |
Comments