結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー 37zigen37zigen
提出日時 2016-04-11 18:56:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 1,098 bytes
コンパイル時間 1,859 ms
コンパイル使用メモリ 77,776 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-10-04 06:34:04
合計ジャッジ時間 4,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,092 KB
testcase_01 AC 114 ms
41,232 KB
testcase_02 AC 110 ms
40,188 KB
testcase_03 AC 121 ms
41,232 KB
testcase_04 AC 115 ms
41,052 KB
testcase_05 AC 101 ms
41,440 KB
testcase_06 AC 130 ms
41,128 KB
testcase_07 AC 120 ms
41,392 KB
testcase_08 AC 120 ms
41,488 KB
testcase_09 AC 101 ms
41,264 KB
testcase_10 AC 112 ms
40,196 KB
testcase_11 AC 112 ms
41,328 KB
testcase_12 AC 113 ms
40,000 KB
testcase_13 AC 116 ms
41,408 KB
testcase_14 AC 100 ms
41,028 KB
testcase_15 AC 115 ms
39,856 KB
testcase_16 AC 115 ms
40,984 KB
testcase_17 AC 100 ms
41,052 KB
testcase_18 AC 105 ms
41,328 KB
testcase_19 AC 99 ms
39,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	static int[] dx={1,-1,0,0};
	static int[] dy={0,0,1,-1};
	void solve(){
		Scanner sc=new Scanner(System.in);
		int[][] table=new int[4][4];
		int sx=-1;
		int sy=-1;
		for(int i=0;i<4;i++){
			for(int j=0;j<4;j++){
				table[i][j]=sc.nextInt();
				if(table[i][j]==0){
					sx=j;
					sy=i;
				}
			}
		}
		for(int i=0;!check(table)&&i<16;i++){
			for(int j=0;j<4;j++){
				int x=sx+dx[j];
				int y=sy+dy[j];
				if(0>x||0>y||x>=4||y>=4)continue;
				if(table[y][x]==4*sy+sx+1){
					int dumsXsY=table[sy][sx];
					table[sy][sx]=table[y][x];
					table[y][x]=dumsXsY;
					sx=x;
					sy=y;
					break;
				}
			}
		}
		if(check(table)){
			System.out.println("Yes");
		}else{
			System.out.println("No");
		}
	}
	boolean check(int[][] table){
		for(int i=0;i<4;i++){
			for(int j=0;j<4;j++){
				if(table[i][j]!=4*i+j+1&&!(i==3&&j==3&&table[i][j]==0)){
					return false;
				}
			}
		}
		return true;
	}
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
}
0