結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー karinohitokarinohito
提出日時 2024-09-19 12:21:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,126 bytes
コンパイル時間 2,155 ms
コンパイル使用メモリ 204,516 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 12:21:59
合計ジャッジ時間 2,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int A[4][4];
    bool D[4][4];
    
    for(int i=0;i<4;i++)for(int j=0;j<4;j++){
        cin>>A[i][j];
        D[i][j]=0;
    }
    vector<int> dx={0,1,0,-1},dy={1,0,-1,0};
    for(int k=0;k<16;k++){
        for(int i=0;i<4;i++){
            for(int j=0;j<4;j++){
                if(A[i][j]==0){
                    for(int d=0;d<4;d++){
                        int y=dy[d]+i;
                        int x=dx[d]+j;
                        if(min(y,x)<0||max(y,x)>=4)continue;
                        if(D[y][x])continue;
                        if(A[y][x]==i*4+j+1){
                            swap(A[y][x],A[i][j]);
                            D[i][j]=1;
                        }
                    }
                }
            }
        }
    }
    for(int i=0;i<4;i++)for(int j=0;j<4;j++){
            if(A[i][j]==0)continue;
            if(A[i][j]!=i*4+j+1){
                cout<<"No"<<endl;
                return 0;
            }
        }
        cout<<"Yes"<<endl;
}
0