SW Expert Academy
SW ํ๋ก๊ทธ๋๋ฐ ์ญ๋ ๊ฐํ์ ๋์์ด ๋๋ ๋ค์ํ ํ์ต ์ปจํ ์ธ ๋ฅผ ํ์ธํ์ธ์!
swexpertacademy.com
from collections import deque
T = int(input())
for tc in range(1,T+1):
N,M = map(int,input().split())
arr=[list(input()) for _ in range(N)]
a_visit = [[0]*M for _ in range(N)]
b_visit = [[0]*M for _ in range(N)]
a_cnt,b_cnt=0,0
a_max,b_max=0,0
def a_bfs(y,x):
global a_max
q = deque()
q.append((y,x))
cnt=1
while q:
ny,nx = q.popleft()
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<N and 0<=dx<M:
if arr[dy][dx]!='A': continue
if a_visit[dy][dx]!=0:continue
a_visit[dy][dx]=1
cnt+=1
q.append((dy,dx))
if a_max<cnt:
a_max=cnt
def b_bfs(y,x):
global b_max
q = deque()
q.append((y,x))
cnt=1
while q:
ny,nx = q.popleft()
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<N and 0<=dx<M:
if arr[dy][dx]!='B': continue
if b_visit[dy][dx]!=0:continue
b_visit[dy][dx]=1
cnt+=1
q.append((dy,dx))
if b_max<cnt:
b_max=cnt
for i in range(N):
for j in range(M):
if arr[i][j] == 'A' and a_visit[i][j] == 0:
a_cnt+=1
a_visit[i][j]=1
a_bfs(i,j)
if arr[i][j] == 'B' and b_visit[i][j]==0:
b_cnt+=1
b_visit[i][j]=1
b_bfs(i,j)
answer=max(a_max,b_max)
print(f'#{tc} {a_cnt} {b_cnt} {answer}')
์ ๋ต
'A'๋ฅผ ๋ฐ๊ฒฌํ์ ๋ ๋ฐฉ๋ฌธํ์ง ์์ ๊ณณ์ด๋ผ๋ฉด BFS๋ฅผ ๋๋ ค์ฃผ๋ ๊ฒ์ด๋ค.
์ด ๋ a_cnt+1์ ๊ฐ์ฒด์ ์๋ฅผ ์๋ฏธํ๋ค.
BFS๋ฅผ ํ๋ฉด์ cntํด์ฃผ๋ ๊ฒ์ ๊ฐ์ฒด์ ํฌ๊ธฐ๋ฅผ ์ธ๋ ๊ฒ์ผ๋ก max๊ฐ์ ๊ฐฑ์ ํด ์ต๋ ํฌ๊ธฐ๋ฅผ ๊ตฌํด์ฃผ์๋ค.
'B'๋ฅผ ๋ฐ๊ฒฌํ์ ๋๋ ๊ฐ์ ๋ฐฉ๋ฒ์ผ๋ก ๊ฐ์ ๊ตฌํด์ค๋ค.
์ถ๋ ฅ์์๋ a์ ๊ฐ์ฒด์์ b์ ๊ฐ์ฒด์ ๊ทธ๋ฆฌ๊ณ ๊ฐ์ฅ ํฐ ๊ฐ์ฒด์ ํฌ๊ธฐ๋ฅผ ์ถ๋ ฅํด์ผํ๋๋ฐ, maxํจ์๋ฅผ ์ด์ฉํด a์ ์ต๋ ํฌ๊ธฐ์ b์ ์ต๋ ํฌ๊ธฐ๋ฅผ ๋น๊ตํด answer๋ก ์ถ๋ ฅํด ์ฃผ์๋ค.
์๋ ํ๋์ bfs๋ก ๋๋ฆด ์ ์๋๋ฐ ๊ทธ๋ฅ ๋๋ a์ฐพ๊ธฐ์ b์ฐพ๊ธฐ๋ฅผ ๋ฐ๋ก ํจ์๋ฅผ ๋ง๋ค์ด ๋๋ ธ๋ค.
๋ ์ค์ด๋ฉด ์ค์ผ ์ ์๊ฒ ์ง๋ง ๋ด๊ฐ ํท๊ฐ๋ ค์...
๊ทธ๋ฅ ๋ฐ๋ก ๋ง๋ค์ด ์ฃผ์๋๋ฐ ํ๋๋ก ๋๋ฆฌ๋๊ฑฐ์ ์๊ฐ์ ์ฐจ์ด๋ ์์ด๋ณด์ธ๋ค.
'Problem Solving > SWEA' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
swea4021.์๋ฆฌ์ฌ (0) | 2022.04.07 |
---|---|
swea2117.ํ ๋ฐฉ๋ฒ ์๋น์ค (0) | 2022.04.07 |
swea. ์ ๊ธฐ๋ฒ์ค (0) | 2022.03.06 |
swea. min max (0) | 2022.03.06 |
swea.view (0) | 2022.03.06 |
๋๊ธ