結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー 👑 CleyLCleyL
提出日時 2022-05-13 09:46:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,043 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 77,140 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 06:36:25
合計ジャッジ時間 1,553 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 WA -
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:21:31: warning: 'zeroy' may be used uninitialized [-Wmaybe-uninitialized]
   21 |   while(!(zerox == 3 && zeroy == 3)){
      |                         ~~~~~~^~~~
main.cpp:7:13: note: 'zeroy' was declared here
    7 |   int zerox,zeroy;
      |             ^~~~~
main.cpp:21:17: warning: 'zerox' may be used uninitialized [-Wmaybe-uninitialized]
   21 |   while(!(zerox == 3 && zeroy == 3)){
      |           ~~~~~~^~~~
main.cpp:7:7: note: 'zerox' was declared here
    7 |   int zerox,zeroy;
      |       ^~~~~

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
pair<int,int> ar4[4] = {{0,1},{0,-1},{1,0},{-1,0}};
int main(){
  vector<vector<int>> A(4,vector<int>(4)),B(4,vector<int>(4));
  int zerox,zeroy;
  int nw = 1;
  for(int i = 0; 4 > i; i++){
    for(int j = 0; 4 > j; j++){
      cin>>A[i][j];
      B[i][j] = nw;
      nw++;
      if(A[i][j] == 0){
        zerox = i;
        zeroy = j;
      }
    }
  }
  B[3][3] = 0;
  while(!(zerox == 3 && zeroy == 3)){
    for(int i = 0; 4 > i; i++){
      if(0 <= zerox+ar4[i].first && zerox+ar4[i].first < 4 && 0 <= zeroy+ar4[i].second && zeroy+ar4[i].second < 4 && A[zerox+ar4[i].first][zeroy+ar4[i].second] == B[zerox][zeroy]){
        swap(A[zerox][zeroy],A[zerox+ar4[i].first][zeroy+ar4[i].second]);
        zerox+=ar4[i].first;
        zeroy+=ar4[i].second;
        continue;
      }
    }
    break;
  }
  for(int i = 0; 4 > i; i++){
    for(int j = 0; 4 > j; j++){
      if(A[i][j] != B[i][j]){
        cout << "No" << endl;
        return 0;
      }
    }
  }
  cout << "Yes" << endl;
}
0