[Python] 백준 14503 - 로봇 청소기
·
Algorithm
https://www.acmicpc.net/problem/14503 14503번: 로봇 청소기 로봇 청소기가 주어졌을 때, 청소하는 영역의 개수를 구하는 프로그램을 작성하시오. 로봇 청소기가 있는 장소는 N×M 크기의 직사각형으로 나타낼 수 있으며, 1×1크기의 정사각형 칸으로 나누어 www.acmicpc.net # n x m n, m = map(int, input().split()) #좌표값, 방향 x, y, d = map(int, input().split()) #청소했는지 안했는지 체크 cheak = [[0]*m for _ in range(n)] #MAP arr = [] for i in range(n): arr.append(list(map(int, input().split()))) #방향 북동남서 d..