結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー kou6839kou6839
提出日時 2015-06-20 20:49:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 1,484 bytes
コンパイル時間 2,229 ms
コンパイル使用メモリ 77,984 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-07-07 15:21:13
合計ジャッジ時間 5,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,524 KB
testcase_01 AC 115 ms
41,492 KB
testcase_02 AC 103 ms
41,156 KB
testcase_03 AC 120 ms
41,380 KB
testcase_04 AC 119 ms
41,308 KB
testcase_05 AC 116 ms
41,296 KB
testcase_06 AC 104 ms
41,812 KB
testcase_07 AC 118 ms
41,520 KB
testcase_08 AC 116 ms
41,416 KB
testcase_09 AC 103 ms
41,188 KB
testcase_10 AC 103 ms
41,356 KB
testcase_11 AC 102 ms
41,536 KB
testcase_12 AC 118 ms
41,416 KB
testcase_13 AC 115 ms
41,292 KB
testcase_14 AC 115 ms
41,644 KB
testcase_15 AC 118 ms
41,640 KB
testcase_16 AC 117 ms
41,412 KB
testcase_17 AC 116 ms
41,300 KB
testcase_18 AC 102 ms
41,176 KB
testcase_19 AC 104 ms
41,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;




public class Main {
	static int[][] originalpazz;
	static void change(int sr,int sc,int tr,int tc,int[][] originalpazz){
		int temp = originalpazz[sr][sc];
		originalpazz[sr][sc]=originalpazz[tr][tc];
		originalpazz[tr][tc]=temp;
	}
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int[][] intputpazz = new int[4][4];
		originalpazz = new int[4][4];
		for(int i=0;i<4;i++){
			for(int j=0;j<4;j++){
				originalpazz[i][j]=i*4+j+1;
			}
		}
		originalpazz[3][3]=0;
		for(int i=0;i<4;i++){
			for(int j=0;j<4;j++){
				intputpazz[i][j]=sc.nextInt();
			}
		}
		int[] dx = {0,-1,0,1};
		int[] dy = {1,0,-1,0};
		HashSet<Integer> used = new HashSet<>();
		t:while(true){
			boolean flag = true;
			for(int i=0;i<4;i++){
				for(int j=0;j<4;j++){
					if(intputpazz[i][j]==0){
						int num = originalpazz[i][j];
						if(used.contains(num)) break t;
						for(int k=0;k<4;k++){
							if(i+dx[k]>=0 && i+dx[k]<4 && j+dy[k]>=0 && j+dy[k]<4){
								if(intputpazz[i+dx[k]][j+dy[k]]==num){
									flag = false;
									change(i, j, i+dx[k], j+dy[k],intputpazz);
									used.add(num);
								}
							}
						}
					}
				}
			}
			if(flag) break;
		}
		for(int i=0;i<4;i++){
			for(int j=0;j<4;j++){
				if(intputpazz[i][j]!=originalpazz[i][j]){
					System.out.println("No");
					return;
				}
			}
		}
		System.out.println("Yes");
	}
}
0