码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode(17)停在原地的方案数(困难)

时间:2021-05-24 16:53:30      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:授权   class   一个   指针   mat   inf   new   问题   官方   

问题描述:

有一个长度为 arrLen 的数组,开始有一个指针在索引 0 处。

每一步操作中,你可以将指针向左或向右移动 1 步,或者停在原地(指针不能被移动到数组范围外)。

给你两个整数 steps 和 arrLen ,请你计算并返回:在恰好执行 steps 次操作以后,指针仍然指向索引 0 处的方案数。

由于答案可能会很大,请返回方案数 模 10^9 + 7 后的结果。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/number-of-ways-to-stay-in-the-same-place-after-some-steps
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

代码:

class Solution {
int mod = (int)1e9+7;
public int numWays(int steps, int len) {
int max = Math.min(steps / 2, len - 1);
int[][] f = new int[steps + 1][max + 1];
f[steps][0] = 1;
for (int i = steps - 1; i >= 0; i--) {
for (int j = 0; j <= max; j++) {
f[i][j] = (f[i][j] + f[i + 1][j]) % mod;
if (j - 1 >= 0) f[i][j] = (f[i][j] + f[i + 1][j - 1]) % mod;
if (j + 1 <= max) f[i][j] = (f[i][j] + f[i + 1][j + 1]) % mod;
}
}
return f[0][0];
}
}

值得注意的:

技术图片

 

 技术图片

 

添加代码

int edge = Math.min(i, max);
// if (edge != max) System.out.println(edge + " " + max);

LeetCode(17)停在原地的方案数(困难)

标签:授权   class   一个   指针   mat   inf   new   问题   官方   

原文地址:https://www.cnblogs.com/ash98/p/14766726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!