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
- sorting
- JavaScript
- 따라하며 배우는 C언어
- dfs
- Algorithm
- 따배씨
- udemy
- String
- 백준
- server
- C언어
- 생활코딩
- graph
- programmers
- Python
- 종만북
- BASIC
- 따라하면서 배우는 C언어
- 인프런
- BFS
- Cleancode
- Math
- BOJ
- web
- Algospot
- greedy
- DP
- php
- C
- 정수론
Archives
- Today
- Total
몽상실현개발주의
[BOJ] 2146 / 다리 만들기 / Python 파이썬 본문
[BOJ] 2146 / 다리 만들기 / Python 파이썬
https://www.acmicpc.net/problem/2146
풀이
주어진 이중배열에서 1로 이루어진 무리 사이의 최단 거리를 구하는 문제이다.
문제를 이해하였지만, 구현하는데에 많은 어려움이 있었다.
BFS 를 이용하여 최단거리를 구하는 것과 문제를 풀기위한 환경 구성을 함께 고려해 주어야 한다.
from collections import deque
def setIsland(y, x, setN):
global N
maps[y][x] = setN
dq = deque()
dq.append((y, x))
while dq:
y, x = dq.popleft()
for i in range(4):
Y = y + dy[i]
X = x + dx[i]
if 0 <= Y < N and 0 <= X < N:
if maps[Y][X] == 1:
maps[Y][X] = setN
dq.append((Y, X))
def countBridgeLength(islandN):
global N, res
checkBridgeMaps = [[-1 for _ in range(N)] for _ in range(N)]
dq = deque()
for y in range(N):
for x in range(N):
if maps[y][x] == islandN:
dq.append((y, x))
checkBridgeMaps[y][x] = 0
while dq:
y, x = dq.popleft()
for i in range(4):
Y = y + dy[i]
X = x + dx[i]
if 0 <= Y < N and 0 <= X < N:
if maps[Y][X] and maps[Y][X] != islandN and checkBridgeMaps[y][x]:
res = min(res, checkBridgeMaps[y][x])
elif checkBridgeMaps[Y][X] == -1:
checkBridgeMaps[Y][X] = checkBridgeMaps[y][x] + 1
if checkBridgeMaps[Y][X] <= res:
dq.append((Y, X))
N = int(input())
maps = []
for _ in range(N):
maps.append(list(map(int, input().split())))
dy = [1, -1, 0, 0]
dx = [0, 0, 1, -1]
setN = 2
for y in range(N):
for x in range(N):
if maps[y][x] == 1:
setIsland(y, x, setN)
setN += 1
res = 123456789
for i in range(2, setN):
countBridgeLength(i)
print(res)
참고 블로그
'Algorithm PS > BOJ' 카테고리의 다른 글
[BOJ] 11725 / 트리의 부모 찾기 / Python 파이썬 (0) | 2021.06.14 |
---|---|
[BOJ] 1991 / 트리 순회 / Python 파이썬 (0) | 2021.06.14 |
[BOJ] 2178 / 미로 탐색 / Python 파이썬 (0) | 2021.06.13 |
[BOJ] 7576 / 토마토 / Python 파이썬 (0) | 2021.06.10 |
[BOJ] 4963 / 섬의 개수 / Python 파이썬 (0) | 2021.06.10 |
Comments