結果
問題 | No.228 ゆきこちゃんの 15 パズル |
ユーザー | ciel |
提出日時 | 2015-06-19 22:48:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 805 bytes |
コンパイル時間 | 273 ms |
コンパイル使用メモリ | 24,960 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 04:08:54 |
合計ジャッジ時間 | 744 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 0 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:29:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 29 | scanf("%d",a+y*4+x); | ~~~~~^~~~~~~~~~~~~~ main.cpp:42:22: warning: ‘parity’ may be used uninitialized in this function [-Wmaybe-uninitialized] 42 | puts((M(0,z)+parity)%2?"No":"Yes"); | ^~~~~~
ソースコード
#include <stdio.h> #include <stdlib.h> int A[999999],W[999999]; long long M(int l,int r){ if(l+1>=r)return 0; if(l+2==r){ if(A[l]<=A[l+1])return 0; int z=A[l];A[l]=A[l+1];A[l+1]=z; return 1; } int m = (l+r)/2,i=l, j=m, k=l; long long cl=M(l, m),cr=M(m,r),c=0; while(i<m&&j<r){ if(A[i]<=A[j])W[k++]=A[i++]; else{ W[k++]=A[j++]; c+=m-i; } } while(i<m)W[k++]=A[i++]; while(j<r)W[k++]=A[j++]; for(i=l;i<r;i++)A[i]=W[i]; return cl+cr+c; } int a[16]; int main(){ int z=0,parity; for(int y=0;y<4;y++)for(int x=0;x<4;x++){ scanf("%d",a+y*4+x); int k=a[y*4+x]; if(k){ A[z++]=k; k--; int tx=k%4,ty=k/4; int d=abs(y-ty)+abs(x-tx); if(d>1){puts("No");return 0;} }else{ int tx=3,ty=3; parity=abs(y-ty)+abs(x-tx); } } puts((M(0,z)+parity)%2?"No":"Yes"); }