結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー maimai
提出日時 2017-05-24 23:41:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 5,000 ms
コード長 1,332 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-09-19 18:39:06
合計ジャッジ時間 2,430 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
76,908 KB
testcase_01 AC 38 ms
53,632 KB
testcase_02 AC 44 ms
61,440 KB
testcase_03 AC 84 ms
76,800 KB
testcase_04 AC 46 ms
60,928 KB
testcase_05 AC 65 ms
70,656 KB
testcase_06 AC 50 ms
64,256 KB
testcase_07 AC 46 ms
60,800 KB
testcase_08 AC 75 ms
76,160 KB
testcase_09 AC 58 ms
69,120 KB
testcase_10 AC 51 ms
65,280 KB
testcase_11 AC 86 ms
76,672 KB
testcase_12 AC 84 ms
76,868 KB
testcase_13 AC 87 ms
77,056 KB
testcase_14 AC 63 ms
72,448 KB
testcase_15 AC 89 ms
76,288 KB
testcase_16 AC 55 ms
67,840 KB
testcase_17 AC 72 ms
76,032 KB
testcase_18 AC 90 ms
76,600 KB
testcase_19 AC 73 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import copy

goal = list(map(lambda e:e%16,  range(1,17)))

def yes():
    print("Yes")
    sys.exit()

def dfs(a, moved,dep=0):
    # print(dep,a,moved)
    if a == goal: yes()
    idx = a.index(0)
    x = idx%4
    y = idx/4
    if 0<x and not moved[a[idx-1]]:
        moved[a[idx-1]] = 1
        a[idx-1], a[idx] = a[idx], a[idx-1]
        dfs(copy.copy(a), copy.copy(moved), dep+1)
        a[idx-1], a[idx] = a[idx], a[idx-1]
        moved[a[idx-1]] = 0
    if x<3 and not moved[a[idx+1]]:
        moved[a[idx+1]] = 1
        a[idx+1], a[idx] = a[idx], a[idx+1]
        dfs(copy.copy(a), copy.copy(moved), dep+1)
        a[idx+1], a[idx] = a[idx], a[idx+1]
        moved[a[idx+1]] = 0
    if 0<y and not moved[a[idx-4]]:
        moved[a[idx-4]] = 1
        a[idx-4], a[idx] = a[idx], a[idx-4]
        dfs(copy.copy(a), copy.copy(moved), dep+1)
        a[idx-4], a[idx] = a[idx], a[idx-4]
        moved[a[idx-4]] = 0
    if y<3 and not moved[a[idx+4]]:
        moved[a[idx+4]] = 1
        a[idx+4], a[idx] = a[idx], a[idx+4]
        dfs(copy.copy(a), copy.copy(moved), dep+1)
        a[idx+4], a[idx] = a[idx], a[idx+4]
        moved[a[idx+4]] = 0

x = list(map(int,input().split()))
x+= list(map(int,input().split()))
x+= list(map(int,input().split()))
x+= list(map(int,input().split()))

dfs(x,[0]*16)

print("No")

0