💻 Coding Problems Solving/DFS | BFS | Backtracking
[프로그래머스] LV.2 게임 맵 최단거리(java)
1. 문제 :https://school.programmers.co.kr/learn/courses/30/lessons/1844 2. 풀이 최단거리의 경우 bfs로! 3. 코드 import java.util.*; class Solution { // 상하좌우 이동할 수 있는 좌표 int[] dx = {0, 1, -1, 0}; int[] dy = {1, 0, 0, -1}; public int solution(int[][] maps) { int answer = 0; int[][] visited = new int[maps.length][maps[0].length]; bfs(maps, visited); answer = visited[maps.length - 1][maps[0].length - 1]; // 상대 팀 진..
2023. 3. 31. 20:14
최근댓글