Loading web-font TeX/Math/Italic
祝同学们学习进步,编程快乐!
Problem 2695 --13_C : 15 Puzzle

2695: 13_C : 15 Puzzle

"
Time Limit 3 秒/Second(s) Memory Limit 512 兆字节/Megabyte(s)
提交总数 0 正确数量 1
裁判形式 标准裁判/Standard Judge 我的状态 尚未尝试
难度 分类标签 STL

15 Puzzle 

The goal of the 15 puzzle problem is to complete pieces on 4×4 cells where one of the cells is empty space. 

In this problem, the space is represented by 0 and pieces are represented by integers from 1 to 15 as shown below. 

   1 2 3 4 

   6 7 8 0 

   5 10 11 12 

   9 13 14 15 

You can move a piece toward the empty space at one step. Your goal is to make the pieces the following configuration in the shortest move (fewest steps). 

   1 2 3 4 

   5 6 7 8 

   9 10 11 12 

   13 14 15 0 

Write a program which reads an initial state of the puzzle and prints the fewest steps to solve the puzzle.

The 4×4 integers denoting the pieces or space are given.
Print the fewest steps in a line.
1 2 3 4
6 7 8 0
5 10 11 12
9 13 14 15
8
The given puzzle is solvable in at most 45 steps.

推荐代码 查看2695 所有题解 上传题解视频得图灵币

本题记录 用 户(点击查看用户) 运行号(点击购买题解) 时 间
算法最快[4 ms] AOJ大管家 1163853 2025-01-14 19:43:35
内存最少[1232 KB] AOJ大管家 1163853 2025-01-14 19:43:35
第一AC AOJ大管家 1163853 2025-01-14 19:43:35
第一挑战 AOJ大管家 1163853 2025-01-14 19:43:35

赛题来源/所属竞赛 会津大学《挑战数据结构与算法》 挑战数据结构与算法

竞赛编号 竞赛名称 竞赛时间 访问比赛
AOJ
祝同学们学习进步,编程快乐!