https://www.acmicpc.net/problem/2573 TASK1. 1년에 얼만큼 녹는지 확인2. 두 덩어리가 되는 지 보기 -> BFS 1. 하나씩 확인 입력import sysfrom collections import dequeinput = sys.stdin.readline# 행 열n, m = map(int, input().split())graph = []for _ in range(n): graph.append(list(map(int, input().split()))) direction = [(-1, 0), (1, 0), (0, -1), (0, 1)] 1번 태스크를 위한 함수def count_0(nowx, nowy): cnt = 0 for dx, dy in direct..