[백준] 14503 : 로봇 청소기 python
바라보는 방향을 유지한 채로 후진하는 것을 제대로 확인하지 못해서 계속 오답이 나왔다. 그렇게 어려운 문제는 아닌 것 같은데 왜 막상 풀면 잘 안 풀리는 건지..아직 연습이 많이 부족한 듯 from collections import deque import sys input = sys.stdin.readline dx = [-1,0,1,0] dy = [0,1,0,-1] n, m = map(int,input().split()) r,c,d = map(int,input().split()) graph = [] visited = [[False for j in range(m)]for i in range(n)] for i in range(n): graph.append(list(map(int,input().split())..
[백준] 2468 : 안전 영역 python
오타를 찾느라 고생을 좀 했다... import sys from collections import deque input = sys.stdin.readline n = int(input()) graph = [] for i in range(n): graph.append(list(map(int,input().split()))) # 최대 높이를 변수에 저장 max_height = max(map(max,graph)) dx = [-1,1,0,0] dy = [0,0,-1,1] def bfs(graph,visited,x,y,h): queue = deque() queue.append((x,y)) visited[x][y] = True while queue: a,b = queue.popleft() for i in range(..