题目如下:

On an NxN chessboard, a knight starts at the r-th row and c-th column and attempts to make exactly K moves. The rows and columns are 0 indexed, so the top-left square is (0, 0), and the bottom-right square is (N-1, N-1).

A chess knight has 8 possible moves it can make, as illustrated below. Each move is two squares in a cardinal direction, then one square in an orthogonal direction.

Each time the knight is to move, it chooses one of eight possible moves uniformly at random (even if the piece would go off the chessboard) and moves there.

The knight continues moving until it has made exactly K moves or has moved off the chessboard. Return the probability that the knight remains on the board after it has stopped moving.

Example:

Input: 3, 2, 0, 0
Output: 0.0625
Explanation: There are two moves (to (1,2), (2,1)) that will keep the knight on the board.
From each of those positions, there are also two moves that will keep the knight on the board.
The total probability the knight stays on the board is 0.0625.

Note:

  • N will be between 1 and 25.
  • K will be between 0 and 100.
  • The knight always initially starts on the board.

解题思路:本题和【leetcode】576. Out of Boundary Paths 非常相似,都是动态规划的方法。最大的不同在于本题有八个方向。主要代码几乎完全复用【leetcode】576. Out of Boundary Paths

代码如下:

class Solution(object):
def knightProbability(self, N, K, r, c):
"""
:type N: int
:type K: int
:type r: int
:type c: int
:rtype: float
"""
dp = []
for i in range(K+1):
tl = []
for j in range(N):
tl.append([0] * N)
dp.append(tl)
dp[0][r][c] = 1
direction = [(-2,1),(-1,2),(1,2),(2,1),(2,-1),(1,-2),(-1,-2),(-2,-1)]
count = 0
for x in range(1,len(dp)):
for y in range(len(dp[x])):
for z in range(len(dp[x][y])):
for (ny, nz) in direction:
if (y + ny) >= 0 and (y + ny) < N and (z + nz) >= 0 and (z + nz) < N:
dp[x][y][z] += dp[x - 1][y + ny][z + nz]
for i in (dp[-1]):
for j in i:
count += j
return float(count) / float(pow(8,K))

最新文章

  1. IDE:IDEA Commit Changes Dialog local changes refresh
  2. C++继承和多态
  3. getElementById,getElementsByName,getElementsByTagName的区别
  4. 穷举、迭代、以及while代替for循环的使用
  5. 《Node.js开发实战详解》学习笔记
  6. 剑指offer题目21-30
  7. JavaScript 学习笔记之线程异步模型
  8. Windows编译Nodejs时遇到 File &quot;configure&quot;, line 313 SyntaxError: invalid syntax Failed to create vc project files. 时的解决方法
  9. Memory
  10. 从一个简单案例上手Spring MVC,同时分析Spring MVC面试问题
  11. 对DataTable(或者DataSet)修改后,提交修改到数据库
  12. Git-分布式版本控制系统(一)
  13. R语言-散点图进阶
  14. SDN期末验收
  15. linux命令:locate
  16. 【推导】zoj3846 GCD Reduce
  17. BZOJ2960:跨平面
  18. MSDN版、OEM版、RTM版、VOL版等的区别
  19. VS 2017 Region快捷键无法折叠
  20. 如何将js字符串变成首字母大写其余小写

热门文章

  1. JavaWeb(三):JSP
  2. k8s和docker区别
  3. 【leetcode】592. Fraction Addition and Subtraction
  4. 英语单词cylindern
  5. 关于exe文件传递参数方法
  6. Win7隐藏登录界面中的用户(不建议HOME版使用)
  7. 写在Flutter 1.0之前
  8. python中匿名函数lamada函数的使用说明
  9. codeforces 582A GCD Table
  10. 建站手册-浏览器信息:Google Chrome 浏览器