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
- udemy
- 따라하면서 배우는 C언어
- C
- 따라하며 배우는 C언어
- 생활코딩
- 백준
- 인프런
- 따배씨
- sorting
- programmers
- dfs
- BASIC
- Algospot
- BFS
- 종만북
- 정수론
- C언어
- Cleancode
- BOJ
- Algorithm
- Python
- graph
- JavaScript
- php
- DP
- greedy
- Math
- String
- web
- server
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 1261 / 알고스팟 / Python 파이썬 본문
[BOJ] 1261 / 알고스팟 / Python 파이썬
https://www.acmicpc.net/problem/1261
풀이
누적 합이 가장 적은 구간을 찾는 문제이다.
처음에는 deque 를 이용한 bfs 로 구하였는데 시간초과가 발생 하였다.
어느 경우에서든 "누적 합" 이 적은 경우로 진행하여야 하기 때문에, 우선순위 queue 로 해결하여야 효율적으로 해결 할 수 있었다.
이를 위하여 deque 에서 appendleft 로 누적합이 적은 경우를 우선적으로 진행되도록 구현해주었다.
※ heapq 를 사용하여 해결 할 수도 있었다.
from collections import deque
N, M = map(int, input().split())
maps = []
for _ in range(M):
maps.append(list(map(int, input())))
dy = [1, 0, 0, -1]
dx = [0, 1, -1, 0]
queue = deque()
queue.append((0, 0, 0))
visited = [[(M*N)+1 for _ in range(N)] for _ in range(M)]
res = (M*N) + 1
while queue:
y, x, cnt = queue.popleft()
if y == M-1 and x == N-1:
res = min(res, cnt)
continue
for i in range(4):
Y = y + dy[i]
X = x + dx[i]
if 0 <= Y < M and 0 <= X < N:
if maps[Y][X] and cnt + 1 < visited[Y][X]:
visited[Y][X] = cnt+1
queue.append((Y, X, cnt + 1))
elif not maps[Y][X] and cnt < visited[Y][X]:
visited[Y][X] = cnt
# queue.append((Y, X, cnt))
queue.appendleft((Y, X, cnt))
print(res)
참고 블로그
https://vixxcode.tistory.com/35
https://pacific-ocean.tistory.com/284
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 7453 / 합이 0인 네 정수 / Python 파이썬 (0) | 2021.08.22 |
---|---|
[BOJ] 1208 / 부분수열의 합 2 / Python 파이썬 (0) | 2021.08.22 |
[BOJ] 1806 / 부분 합 / Python 파이썬 (0) | 2021.08.12 |
[BOJ] 1644 / 소수의 연속합 / Python 파이썬 (0) | 2021.08.12 |
[BOJ] 2003 / 수들의 합 2 / Python 파이썬 (0) | 2021.08.09 |
Comments