結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー CrossLunaCrossLuna
提出日時 2015-06-19 23:04:26
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,137 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 66,700 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-21 10:06:46
合計ジャッジ時間 1,516 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <list>
#include <map>

using namespace std;

int f[4][4];

bool inrage(int i, int j){
    return 0 <= i && i <= 3 && 0 <= j && j <= 3;
}

bool valid(int i, int j, int num){
    bool result = false;
    if(inrage(i, j-1)){
        if(f[i][j-1] == num)
            result = true;
    }
    if(inrage(i, j+1)){
        if(f[i][j+1] == num)
            result = true;
    }
    if(inrage(i+1, j)){
        if(f[i+1][j] == num)
            result = true;
    }
    if(inrage(i-1, j)){
        if(f[i-1][j] == num)
            result = true;
    }
    if(f[i][j] == num)
        result = true;
    return result;
}


int main()
{
    for(int i=0; i<4; i++){
        for(int j=0; j<4; j++){
            cin >> f[i][j];
        }
    }
    bool result = true;
    for(int i=0; i<4; i++){
        for(int j=0; j<4; j++){
            int num = (4*i + j + 1)%16;
            if(!valid(i,j, num )){
                result = false;
            }
        }
    }
    if(result)
        cout << "Yes" << endl;
    else
        cout << "No" << endl;

    return 0;
}
0