๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
  • What would life be If we had no courage to attemp anything?
Problem Solving/BAEKJOON

[baekjoon]python #2589 ๋ณด๋ฌผ์„ฌ

by DevIseo 2022. 4. 26.

 

 

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๋กœ ์ œ์ถœ

๋Œ“๊ธ€