개발/알고리즘
[백준 17144] 미세먼지 안녕! (python)
17144번: 미세먼지 안녕! 미세먼지를 제거하기 위해 구사과는 공기청정기를 설치하려고 한다. 공기청정기의 성능을 테스트하기 위해 구사과는 집을 크기가 R×C인 격자판으로 나타냈고, 1×1 크기의 칸으로 나눴다. 구사 www.acmicpc.net import sys from copy import deepcopy from collections import deque dx = [0, 0, -1, 1] dy = [-1, 1, 0, 0] input = sys.stdin.readline R, C, T = map(int, input().split()) arr = [] diff = [] for _ in range(R): arr.append(deque(map(int, input().split()))) def diffu..
2021. 3. 17. 02:39
최근댓글