結果
問題 | No.228 ゆきこちゃんの 15 パズル |
ユーザー | 37zigen |
提出日時 | 2016-04-11 18:52:44 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,114 bytes |
コンパイル時間 | 1,859 ms |
コンパイル使用メモリ | 77,636 KB |
実行使用メモリ | 54,320 KB |
最終ジャッジ日時 | 2024-10-04 06:33:54 |
合計ジャッジ時間 | 4,918 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 100 ms
41,216 KB |
testcase_01 | AC | 111 ms
41,396 KB |
testcase_02 | WA | - |
testcase_03 | AC | 111 ms
41,500 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 101 ms
41,332 KB |
testcase_13 | AC | 99 ms
41,388 KB |
testcase_14 | AC | 112 ms
41,400 KB |
testcase_15 | AC | 115 ms
41,252 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 113 ms
41,528 KB |
testcase_19 | AC | 112 ms
41,612 KB |
ソースコード
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; tr(table); 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));} }