[백준] 봄버맨 [풀이 + 코드 + 문제를 풀며 어떤 생각을 했는가?]
시뮬레이션 https://www.acmicpc.net/problem/16918 16918번: 봄버맨 첫째 줄에 R, C, N (1 ≤ R, C, N ≤ 200)이 주어진다. 둘째 줄부터 R개의 줄에 격자판의 초기 상태가 주어진다. 빈 칸은 '.'로, 폭탄은 'O'로 주어진다. www.acmicpc.net 코드 import sys input = sys.stdin.readline r, c, n = map(int, input().split()) arr = [list(input().strip()) for _ in range(r)] # 상하좌우 dx = [(-1, 0), (1, 0), (0,-1), (0, 1)] # 초기 폭탄 위치 boomb = [[i, j] for i in range(r) for j in ra..
2023. 8. 7.