티스토리 뷰
문제출처 - https://www.acmicpc.net/problem/2589
from collections import deque
def bfs(x, y):
distance = 0
q = deque()
q.append((x, y, 0)) # 시작 노드를 큐에 넣어줌
visit[x][y] = 1
while q:
x, y, d = q.popleft()
for k in range(4):
nx = x + dx[k]
ny = y + dy[k]
if nx < 0 or ny < 0 or nx >= a or ny >= b:
continue
if graph[nx][ny] == 'L' and visit[nx][ny] == 0:
q.append((nx, ny, d+1))
visit[nx][ny] = 1
distance = d+1
return distance
dx = [0, 0, -1, 1]
dy = [-1, 1, 0, 0]
a, b = map(int, input().split())
graph = [input() for _ in range(a)]
visit = [[0] * b for _ in range(a)]
max_distance = 0
for i in range(a):
for j in range(b):
if graph[i][j] == 'L':
visit = [[0] * b for _ in range(a)] # 매번 초기화 시켜줘야댐
max_distance = max(max_distance, bfs(i, j))
print(max_distance)
BFS 설명
- 큐에 값이 존재하지 않을때까지 반복
- 맨 앞에 큐 꺼내서 가져오기
- 상하좌우 & 방문 비교
- 방문 안했으면 큐에 추가, 방문했다고 표시, 거리 1씩 증가
Main
- 그래프의 모든 원소 탐색
- 탐색할때마다 매번 방문리스트 초기화
- 탐색끝나면 max_distance랑 비교해서 큰 값 넣어주기
'ALGORITHM > 백준' 카테고리의 다른 글
[Python]백준 - 보물(1026번) (0) | 2020.02.23 |
---|---|
[Python]백준 - 소트인사이드(1427번) (0) | 2020.02.23 |
[Python]백준 - 수 이어 쓰기 1(1748번) (0) | 2020.02.12 |
[Python]백준 - 베르트랑 공준(4948번) (2) | 2020.02.11 |
[Python]백준 - 명령 프롬포트(1032번) (0) | 2020.02.11 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- SW Expert
- 괄호
- 구현
- hash
- combination
- Python
- 프로그래머스
- 딕셔너리
- 힙
- 스택
- 코딩테스트
- SWExpert
- 문자열
- dictionary
- C++
- programmers
- 정렬
- 문자열처리
- 완전탐색
- 백준
- 재귀
- 2019 Kakao Blind Recruitment
- 파이썬
- 2020 KAKAO BLIND RECRUITMENT
- 해시
- BOJ
- 순열
- 우선순위큐
- left join
- Permutation
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함