2589๋ฒ: ๋ณด๋ฌผ์ฌ
๋ณด๋ฌผ์ฌ ์ง๋๋ฅผ ๋ฐ๊ฒฌํ ํํฌ ์ ์ฅ์ ๋ณด๋ฌผ์ ์ฐพ์๋์ฐ๋ค. ๋ณด๋ฌผ์ฌ ์ง๋๋ ์๋ ๊ทธ๋ฆผ๊ณผ ๊ฐ์ด ์ง์ฌ๊ฐํ ๋ชจ์์ด๋ฉฐ ์ฌ๋ฌ ์นธ์ผ๋ก ๋๋์ด์ ธ ์๋ค. ๊ฐ ์นธ์ ์ก์ง(L)๋ ๋ฐ๋ค(W)๋ก ํ์๋์ด ์๋ค. ์ด ์ง๋์์
www.acmicpc.net
from collections import deque
col,row = map(int,input().split())
arr = [list(map(str,input())) for _ in range(col)]
Max = 0
def bfs(y,x,move):
global Max
q = deque()
q.append((y,x,move))
visit = [[0] * row for _ in range(col)]
visit[y][x] = 1
while q:
ny,nx,nmove = q.popleft()
if Max < nmove:
Max = nmove
directy=[-1,1,0,0]
directx=[0,0,-1,1]
for i in range(4):
dy = directy[i]+ny
dx = directx[i]+nx
if 0<=dy<col and 0<=dx<row:
if visit[dy][dx] == 0 and arr[dy][dx]=='L':
visit[dy][dx]=nmove
q.append((dy,dx,nmove+1))
for i in range(col):
for j in range(row):
if arr[i][j] == 'L':
bfs(i,j,1)
print(Max-1)
pypy3๋ก ์ ์ถ
'Problem Solving > BAEKJOON' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[baekjoon]python #2469 ์ฌ๋ค๋ฆฌ ํ๊ธฐ (0) | 2022.05.03 |
---|---|
[baekjoon]python #2606 ๋ฐ์ด๋ฌ์ค (0) | 2022.05.02 |
[baekjoon]python #19949 ์์ฌ์ ์ํ (0) | 2022.04.14 |
[baekjoon]python #2477 ์ฐธ์ธ๋ฐญ (0) | 2022.03.11 |
[baekjoon ]python #1436 ์ํ๊ฐ๋ ์ (0) | 2022.03.11 |
๋๊ธ