[백준] 10026번 적록색약

HL·2021년 1월 17일
0

백준

목록 보기
12/104
  • 출처 : 적록색약

  • 알고리즘 : 재귀, DFS

  • 풀이

    1. 각 좌표를 순회
    2. 아직 check가 안 됐으면서 인접 좌표와 값이 같으면 check
  • 소감 : 풀이 자체는 쉬웠는데 코딩하는데 시간이 좀 걸렸다

코드

import sys

def make_counted_true(board, counted, pos):

    counted[pos['i']][pos['j']] = True

    for d in ['left','right','up','down']:

        new_pos = get_new_position(pos, d)
        if (new_pos['i'] >= 0 and new_pos['i'] < len(board)) and (new_pos['j'] >= 0 and new_pos['j'] < len(board)):
            if not counted[new_pos['i']][new_pos['j']]:
                if board[pos['i']][pos['j']] == board[new_pos['i']][new_pos['j']]:
                    make_counted_true(board, counted, new_pos)


def get_new_position(pos, direction):

    if direction == 'up':
        return {'i': pos['i']-1, 'j': pos['j']}
    if direction == 'down':
        return {'i': pos['i']+1, 'j': pos['j']}
    if direction == 'left':
        return {'i': pos['i'], 'j': pos['j']+1}
    if direction == 'right':
        return {'i': pos['i'], 'j': pos['j']-1}


def print_line(list_line):
    for line in list_line:
        print(line)
    print('')


def get_part_count(board):

    counted = [[False for j in range(len(board))] for i in range(len(board))]
    count = 0

    for i in range(len(board)):
        for j in range(len(board)):

            if not counted[i][j]:
                count += 1
                make_counted_true(board, counted, {'i': i, 'j': j})

    return count


def get_input():

    origin_board = []
    changed_board = []
    n = int(input(''))

    for i in range(n):

        temp = input('')
        origin_board.append(list(temp))
        changed_board.append(list(temp.replace('R', 'G')))

    return n, origin_board, changed_board

sys.setrecursionlimit(99999)

# get_input()
n, origin_board, changed_board = get_input()

origin_count = get_part_count(origin_board)
changed_count = get_part_count(changed_board)

print(origin_count, changed_count)
profile
Swift, iOS 앱 개발을 공부하고 있습니다

0개의 댓글