递归DP-中国象棋马跳到目标位置的走法
package com.jiucaiyuan.net.question; /** * 中国象棋 * * @Author jiucaiyuan 2022/6/5 17:43 * @mail services@jiucaiyuan.net */ public class ChineseChessHorseJump { /** * 象棋,马从(0,0)位置,跳step步到达(x,y)位置的方法数 * * @param x 目的地x轴坐标 * @param y 目的地y轴坐标 * @param step 跳次数(步数) * @return 返回方法数 */ public static int horse2DestinationWays(int x, int y, int step) { return process(x, y, step); } /** * 代码实现是从(x,y)跳到(0,0)的方法数,和题目一样 * * @param x * @param y * @param step * @return */ private static int process(int x, int y, int step) { if (x < 0 || x > 8 || y < 0 || y > 9) { //入参不合法时,直接返回方法数为0 return 0; } if (step == 0) { return (x == 0 && y == 0) ? 1 : 0; } return process(x - 1, y + 2, step - 1) + process(x + 1, y + 2, step - 1) + process(x + 2, y + 1, step - 1) + process(x + 2, y - 1, step - 1) + process(x + 1, y - 2, step - 1) + process(x - 1, y - 2, step - 1) + process(x - 2, y - 1, step - 1) + process(x - 2, y + 1, step - 1) ; } /** * @param x * @param y * @param step * @return */ public static int dpWays(int x, int y, int step) { if (x < 0 || x > 8 || y < 0 || y > 9) { //入参不合法时,直接返回方法数为0 return 0; } int[][][] dp = new int[9][10][step + 1]; dp[0][0][0] = 1; //从第一层开始,逐渐尝试到step层 for (int h = 1; h <= step; h++) { for (int r = 0; r < 9; r++) { //同一层顺序无所谓,也可以按照r降序尝试 for (int c = 0; c < 10; c++) { //同一层顺序无所谓,也可以按照c降序尝试 dp[r][c][h] += getValue(dp, r - 1, c + 2, h - 1); dp[r][c][h] += getValue(dp, r + 1, c + 2, h - 1); dp[r][c][h] += getValue(dp, r + 2, c + 1, h - 1); dp[r][c][h] += getValue(dp, r + 2, c - 1, h - 1); dp[r][c][h] += getValue(dp, r + 1, c - 2, h - 1); dp[r][c][h] += getValue(dp, r - 1, c - 2, h - 1); dp[r][c][h] += getValue(dp, r - 2, c - 1, h - 1); dp[r][c][h] += getValue(dp, r - 2, c + 1, h - 1); } } } return dp[x][y][step]; } private static int getValue(int[][][] dp, int row, int col, int step) { if (row < 0 || row > 8 || col < 0 || col > 9) { //入参不合法时,直接返回方法数为0 return 0; } return dp[row][col][step]; } public static void main(String[] args) { int x = 7; int y = 7; int step = 10; System.out.println(horse2DestinationWays(x, y, step)); System.out.println(dpWays(x, y, step)); } }
« 最大公约数
|
递归DP-金币组合最少金币数»
日历
个人资料
diaba 寻求合作请留言或联系mail: services@jiucaiyuan.net
链接
最新文章
存档
- 2024年10月(1)
- 2024年8月(2)
- 2024年6月(4)
- 2024年5月(1)
- 2023年7月(1)
- 2022年10月(1)
- 2022年8月(1)
- 2022年6月(11)
- 2022年5月(6)
- 2022年4月(33)
- 2022年3月(26)
- 2021年3月(1)
- 2020年9月(2)
- 2018年8月(1)
- 2018年3月(1)
- 2017年3月(3)
- 2017年2月(6)
- 2016年12月(3)
- 2016年11月(2)
- 2016年10月(1)
- 2016年9月(3)
- 2016年8月(4)
- 2016年7月(3)
- 2016年6月(4)
- 2016年5月(7)
- 2016年4月(9)
- 2016年3月(4)
- 2016年2月(5)
- 2016年1月(17)
- 2015年12月(15)
- 2015年11月(12)
- 2015年10月(6)
- 2015年9月(11)
- 2015年8月(8)
分类
热门文章
- SpringMVC:Null ModelAndView returned to DispatcherServlet with name 'applicationContext': assuming HandlerAdapter completed request handling
- Mac-删除卸载GlobalProtect
- java.lang.SecurityException: JCE cannot authenticate the provider BC
- MyBatis-Improper inline parameter map format. Should be: #{propName,attr1=val1,attr2=val2}
- Idea之支持lombok编译
标签
最新评论
- logisqykyk
Javassist分析、编辑和创建jav... - xxedgtb
Redis—常见参数配置 - 韭菜园 ... - wdgpjxydo
SpringMVC:Null Model... - rllzzwocp
Mysql存储引擎MyISAM和Inno... - dpkgmbfjh
SpringMVC:Null Model... - tzklbzpj
SpringMVC:Null Model... - bqwrhszmo
MyBatis-Improper inl... - 乐谱吧
good非常好 - diaba
@diaba:应该说是“时间的度量依据”... - diaba
如果速度增加接近光速、等于光速、甚至大于...
最新微语
- 从今天起,做一个幸福的人。喂马,砍柴,(思想)周游世界
2022-03-21 23:31
- 2022.03.02 23:37:59
2022-03-02 23:38
- 几近崩溃后,找到解决方法,总是那么豁然开朗!所以遇到问题要坚持!
2018-07-18 10:49
- 2018年关键字“走心”
2018-03-19 16:07
- 保护好自己最大的方法是让自己更强大,不要柔弱的像一只绵羊一样,得谁巴拉,就谁巴拉!
2017-12-20 10:24
发表评论: