結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー flippergoflippergo
提出日時 2024-11-04 10:14:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 5,000 ms
コード長 859 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 83,088 KB
最終ジャッジ日時 2024-11-04 10:14:35
合計ジャッジ時間 6,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 247 ms
83,088 KB
testcase_01 AC 214 ms
83,036 KB
testcase_02 AC 214 ms
82,716 KB
testcase_03 AC 213 ms
82,716 KB
testcase_04 AC 214 ms
82,696 KB
testcase_05 AC 244 ms
82,824 KB
testcase_06 AC 217 ms
83,088 KB
testcase_07 AC 216 ms
82,720 KB
testcase_08 AC 216 ms
82,696 KB
testcase_09 AC 216 ms
82,960 KB
testcase_10 AC 214 ms
82,708 KB
testcase_11 AC 226 ms
82,896 KB
testcase_12 AC 214 ms
82,976 KB
testcase_13 AC 213 ms
82,720 KB
testcase_14 AC 213 ms
82,952 KB
testcase_15 AC 212 ms
82,964 KB
testcase_16 AC 217 ms
82,848 KB
testcase_17 AC 217 ms
82,976 KB
testcase_18 AC 215 ms
82,824 KB
testcase_19 AC 219 ms
82,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import copy
dist = {}
x = (1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0)
goal = set()
goal.add(x)
x = list(x)
x = [[x[i],0] for i in range(16)]
que = deque([x])
while que:
    x = que.popleft()
    x1 = tuple([x[i][0] for i in range(16)])
    # print(x1)
    ind = x.index([0,0])
    h = ind//4
    w = ind%4
    for dh,dw in [(0,1),(0,-1),(1,0),(-1,0)]:
        nh = h+dh
        nw = w+dw
        if 0<=nh<4 and 0<=nw<4:
            y = copy.deepcopy(x)
            ind1 = nh*4+nw
            if y[ind1][1]==0:
                y[ind],y[ind1] = y[ind1],y[ind]
                y[ind][1] = 1
                z = tuple([y[i][0] for i in range(16)])
                goal.add(z)
                que.append(y)
y = []
for i in range(4):
    y += list(map(int,input().split()))
y = tuple(y)
if y in goal:
    print("Yes")
else:
    print("No")
0