블 루 브리지 컵알고리즘 증가학 패 의 미로.
9969 단어 알고리즘
입력 샘플 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.Scanner;
/** * @author * */
public class Main {
private static int n;
private static int m;
private static char[][] mat;
private static String minResult;
private static boolean[][] hasReach;
/** * @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];
hasReach=new boolean[n][m];
for(int i=0;i<n;i++){
mat[i]=sc.next().toCharArray();
}
hasReach[0][0]=true;
fun("",0,0,'U');
fun("",0,0,'D');
fun("",0,0,'R');
fun("",0,0,'L');
// hasReach[0][0]=false;
System.out.println(minResult.length());
System.out.println(minResult);
}
private static void fun(String result,int i,int j,char direction){
if(i==n-1&&j==m-1){
if(minResult==null||minResult.length()>result.length()||(minResult.length()==result.length()&&minResult.compareTo(result)>0)){
minResult=result;
}
return;
}
int nextI=i;
int nextJ=j;
switch (direction) {
case 'U': {
nextI--;
if (judge(nextI, nextJ)) {
hasReach[nextI][nextJ]=true;
fun(result+'U', nextI, nextJ, 'U');
fun(result+'U', nextI, nextJ, 'D');
fun(result+'U', nextI, nextJ, 'R');
fun(result+'U', nextI, nextJ, 'L');
hasReach[nextI][nextJ]=false;
}
break;
}
case 'D': {
nextI++;
if (judge(nextI, nextJ)) {
hasReach[nextI][nextJ]=true;
fun(result+'D', nextI, nextJ, 'U');
fun(result+'D', nextI, nextJ, 'D');
fun(result+'D', nextI, nextJ, 'R');
fun(result+'D', nextI, nextJ, 'L');
hasReach[nextI][nextJ]=false;
}
break;
}
case 'R': {
nextJ++;
if (judge(nextI, nextJ)) {
hasReach[nextI][nextJ]=true;
fun(result+'R', nextI, nextJ, 'U');
fun(result+'R', nextI, nextJ, 'D');
fun(result+'R', nextI, nextJ, 'R');
fun(result+'R', nextI, nextJ, 'L');
hasReach[nextI][nextJ]=false;
}
break;
}
case 'L': {
nextJ--;
if (judge(nextI, nextJ)) {
hasReach[nextI][nextJ]=true;
fun(result+'L', nextI, nextJ, 'U');
fun(result+'L', nextI, nextJ, 'D');
fun(result+'L', nextI, nextJ, 'R');
fun(result+'L', nextI, nextJ, 'L');
hasReach[nextI][nextJ]=false;
}
break;
}
}
}
private static boolean judge(int nextI,int nextJ){
if(nextI==-1||nextI==n||nextJ==-1||nextJ==m){
return false;
}else if(hasReach[nextI][nextJ]==true){
return false;
}else if(mat[nextI][nextJ]=='1'){
return false;
}else{
return true;
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.