結果
問題 | No.228 ゆきこちゃんの 15 パズル |
ユーザー | CrossLuna |
提出日時 | 2015-06-19 23:04:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,137 bytes |
コンパイル時間 | 459 ms |
コンパイル使用メモリ | 65,380 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-07 04:13:09 |
合計ジャッジ時間 | 1,104 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,944 KB |
ソースコード
#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; }