結果

問題 No.124 門松列(3)
ユーザー kou6839kou6839
提出日時 2015-01-15 20:53:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 254 ms / 5,000 ms
コード長 2,032 bytes
コンパイル時間 2,960 ms
コンパイル使用メモリ 77,976 KB
実行使用メモリ 58,084 KB
最終ジャッジ日時 2024-06-22 11:47:06
合計ジャッジ時間 9,036 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 243 ms
57,688 KB
testcase_01 AC 131 ms
54,180 KB
testcase_02 AC 133 ms
54,000 KB
testcase_03 AC 254 ms
58,084 KB
testcase_04 AC 239 ms
57,668 KB
testcase_05 AC 241 ms
57,672 KB
testcase_06 AC 134 ms
54,352 KB
testcase_07 AC 132 ms
53,936 KB
testcase_08 AC 135 ms
54,144 KB
testcase_09 AC 133 ms
54,108 KB
testcase_10 AC 136 ms
54,416 KB
testcase_11 AC 136 ms
54,480 KB
testcase_12 AC 133 ms
54,012 KB
testcase_13 AC 131 ms
54,124 KB
testcase_14 AC 142 ms
54,108 KB
testcase_15 AC 142 ms
54,348 KB
testcase_16 AC 187 ms
54,612 KB
testcase_17 AC 151 ms
54,292 KB
testcase_18 AC 143 ms
54,240 KB
testcase_19 AC 148 ms
54,160 KB
testcase_20 AC 174 ms
54,348 KB
testcase_21 AC 143 ms
54,380 KB
testcase_22 AC 154 ms
53,968 KB
testcase_23 AC 207 ms
57,496 KB
testcase_24 AC 220 ms
57,448 KB
testcase_25 AC 222 ms
57,368 KB
testcase_26 AC 202 ms
57,036 KB
testcase_27 AC 190 ms
54,652 KB
testcase_28 AC 239 ms
57,632 KB
testcase_29 AC 241 ms
58,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int column = sc.nextInt();
        int row = sc.nextInt();
        int[][] maze = new int[row][column];
        int[] vx = {0,1,0,-1};
        int[] vy={-1,0,1,0};
        int[][] fromx = new int[row][column];
        int[][] fromy = new int[row][column];
        int[][] kai = new int[row][column];
        for(int i=0;i<row;i++){
        	for(int j=0;j<column;j++){
        		maze[i][j]=sc.nextInt();
        	}
        }
        Queue<Integer> quex = new LinkedList<Integer>();
        Queue<Integer> quey = new LinkedList<Integer>();
        Queue<Integer> moto = new LinkedList<Integer>();
        Queue<Integer> hoo = new LinkedList<Integer>();
        quex.offer(1);
        quey.offer(0);
        quex.offer(0);
        quey.offer(1);
        hoo.offer(1);
        hoo.offer(1);
        moto.offer(maze[0][0]);
        moto.offer(maze[0][0]);
        while(!quex.isEmpty()){
        	int nx = quex.poll();
        	int ny = quey.poll();
        	int nowho = hoo.poll();
        	int moto1 = moto.poll();
        	for(int i=0;i<4;i++){
        		int nex = nx+vx[i];
        		int ney = ny+vy[i];
        		if(nex<0 || nex > column-1 || ney<0 || ney > row-1) continue;
        		if( ((moto1 > maze[ny][nx] && maze[ney][nex]>maze[ny][nx]) || (moto1 < maze[ny][nx] && maze[ney][nex]<maze[ny][nx]))&&kai[ney][nex]<4 && (fromx[ney][nex]!=nx||fromy[ney][nex]!=ny)&&moto1!=maze[ny][nx]&&moto1 != maze[ney][nex] && maze[ny][nx]!=maze[ney][nex]){
        			quex.offer(nex);
        			quey.offer(ney);
        			moto.offer(maze[ny][nx]);
        			hoo.offer(nowho+1);
        			fromx[ney][nex]=nx;
        			fromy[ney][nex]=ny;
        			kai[ney][nex]++;
        			if(nex == column-1 && ney == row-1){
                		System.out.println(nowho+1);
                		return;
                	}
        		}
        	}
        }
        System.out.println(-1);
    }
}		
0