結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー kohei2019kohei2019
提出日時 2022-01-05 21:21:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 923 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 66,036 KB
最終ジャッジ日時 2024-11-06 08:37:13
合計ジャッジ時間 1,982 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,272 KB
testcase_01 AC 50 ms
64,408 KB
testcase_02 AC 50 ms
64,980 KB
testcase_03 AC 49 ms
64,588 KB
testcase_04 AC 50 ms
64,596 KB
testcase_05 AC 49 ms
64,440 KB
testcase_06 AC 50 ms
64,632 KB
testcase_07 AC 49 ms
64,688 KB
testcase_08 AC 53 ms
65,752 KB
testcase_09 AC 51 ms
64,500 KB
testcase_10 AC 50 ms
66,036 KB
testcase_11 AC 49 ms
64,184 KB
testcase_12 AC 50 ms
63,972 KB
testcase_13 AC 50 ms
65,148 KB
testcase_14 AC 49 ms
65,376 KB
testcase_15 AC 49 ms
65,752 KB
testcase_16 AC 50 ms
65,736 KB
testcase_17 AC 50 ms
65,196 KB
testcase_18 AC 50 ms
65,124 KB
testcase_19 AC 50 ms
64,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ls = []
for i in range(4):
    ls += list(map(int,input().split()))
ls = tuple(ls)

kls = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 0]
moveto = [-4,-1,1,4]
als = set()
def dfs(ls0):
    als.add(tuple(ls0))
    ind0 = ls0.index(0)
    if ind0 + 4 < 16:
        if ls0[ind0+4] == ind0+5:
            ls1 = ls0[:]
            ls1[ind0],ls1[ind0+4] = ls1[ind0+4],ls1[ind0]
            dfs(ls1)
    if ind0 - 4 >= 0:
        if ls0[ind0-4] == ind0-3:
            ls1 = ls0[:]
            ls1[ind0],ls1[ind0-4] = ls1[ind0-4],ls1[ind0]
            dfs(ls1)
    if ind0 % 4 != 0:
        if ls0[ind0-1] == ind0:
            ls1 = ls0[:]
            ls1[ind0],ls1[ind0-1] = ls1[ind0-1],ls1[ind0]
            dfs(ls1)
    if ind0 % 4 != 3:
        if ls0[ind0+1] == ind0+2:
            ls1 = ls0[:]
            ls1[ind0],ls1[ind0+1] = ls1[ind0+1],ls1[ind0]
            dfs(ls1)

dfs(kls)
print('Yes' if ls in als else 'No')
0