블 루 브리지 컵알고리즘 증가학 패 의 미로 (BFS 방법)
입력 샘플 2: 3 3000 000 000 샘플 출력 샘플 1: 4 RDRD
Output Sample 2: 4 DDRR 데이터 규모 와 약 정 된 20% 의 데이터 만족: 1 < = n, m < = 10 은 50% 의 데이터 만족: 1 < = n, m < = 50 은 100% 의 데이터 만족: 1 < = n, m < = 500.
import java.util.ArrayDeque;
import java.util.Scanner;
public class Main {
private static int n;
private static int m;
private static char[][] mat;
private static ArrayDeque<Node> queue=new ArrayDeque<Node>();
private static boolean[][] hasVisited;
private static String minSteps;
private static int minStepCount=Integer.MAX_VALUE;
private static boolean isFinished=false;
private static char[] direction={'U','D','R','L'};
private static int[][] dir=new int[][]{{-1,0},{1,0},{0,1},{0,-1}};
/** * @param args */
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc=new Scanner(System.in);
n=sc.nextInt();
m=sc.nextInt();
mat=new char[n][m];
hasVisited=new boolean[n][m];
for(int i=0;i<n;i++){
mat[i]=sc.next().toCharArray();
}
bfs();
System.out.println(minStepCount);
System.out.println(minSteps);
}
private static void bfs(){
queue.offer(new Node(0,0,"",0));
while(!queue.isEmpty()){
Node node=queue.poll();
hasVisited[node.x][node.y]=true;
if(node.x==n-1&&node.y==m-1){
isFinished=true;
if(minStepCount>node.stepCount){
minStepCount=node.stepCount;
minSteps=node.steps;
}else if(minStepCount==node.stepCount&&minSteps.compareTo(node.steps)>0){
minSteps=node.steps;
}
continue;
}
if(isFinished){
if(node.stepCount>=minStepCount){
continue;
}
}
for(int i=0;i<4;i++){
Node newNode=new Node(node.x+dir[i][0],node.y+dir[i][1],node.steps+direction[i],node.stepCount+1);
if(check(newNode)){
queue.offer(newNode);
}
}
}
}
private static boolean check(Node node){
if(node.x==-1||node.y==-1||node.x==n||node.y==m){
return false;
}else if(hasVisited[node.x][node.y]){
return false;
}else if(mat[node.x][node.y]=='1'){
return false;
}else{
return true;
}
}
}
class Node{
int x;
int y;
String steps;
int stepCount;
public Node(int x,int y,String steps,int stepCount){
this.x=x;
this.y=y;
this.steps=steps;
this.stepCount=stepCount;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Codility Lesson3】FrogJmpA small frog wants to get to the other side of the road. The frog is currently located at position X and wants to get to...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.