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

swea.14195 ๋ฏธ์ƒ๋ฌผ ๊ด€์ฐฐ

by DevIseo 2022. 4. 6.

https://swexpertacademy.com/main/code/userProblem/userProblemDetail.do?contestProbId=AX_Pn1I6fBQDFARi 

 

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

๋Œ“๊ธ€