結果
問題 | No.228 ゆきこちゃんの 15 パズル |
ユーザー | bal4u |
提出日時 | 2019-07-06 09:09:26 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 1,344 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 18:03:30 |
合計ジャッジ時間 | 951 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
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 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 1 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.c: In function 'in': main.c:9:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 9 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:15:24: note: in expansion of macro 'gc' 15 | int n = 0, c = gc(); | ^~
ソースコード
// yukicoder: No.228 ゆきこちゃんの15パズル // 2019.7.5 bal4u #include <stdio.h> #include <string.h> typedef unsigned long long ull; #if 1 #define gc() getchar_unlocked() #else #define gc() getchar() #endif int in() { // 非負整数の入力 int n = 0, c = gc(); do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0'); return n; } typedef struct { char a[4][4], r, c; int b; } Q; Q q[1000]; int top; char s[4][4] = {{1,2,3,4},{5,6,7,8},{9,10,11,12},{13,14,15,0}}; int mv[4][2] = {{-1,0},{0,1},{1,0},{0,-1}}; void swap(char b[4][4], char a[4][4], int nr, int nc, int r, int c) { int t; memcpy(b, a, 16); t = b[r][c], b[r][c] = b[nr][nc], b[nr][nc] = t; } int main() { int i, b, t, r, c, rr, cc; char a[4][4], aa[4][4]; for (r = 0; r < 4; r++) for (c = 0; c < 4; c++) { q[0].a[r][c] = t = in(); if (t == 0) q[0].r = r, q[0].c = c; } t = 0; top = 1; while (top) { r = q[--top].r, c = q[top].c, memcpy(a, q[top].a, 16), b = q[top].b; if (memcmp(a, s, 16) == 0) { puts("Yes"); return 0; } for (i = 0; i < 4; i++) { rr = r + mv[i][0], cc = c + mv[i][1]; if (rr < 0 || rr >= 4 || cc < 0 || cc >= 4) continue; if ((b >> a[rr][cc]) & 1) continue; swap(aa, a, rr, cc, r, c); q[top].r = rr, q[top].c = cc, memcpy(q[top].a, aa, 16), q[top++].b = b | (1 << a[rr][cc]); } } puts("No"); return 0; }