Leetcode--出界的路径数

2023-11-23 00:10
文章标签 leetcode 路径 出界

本文主要是介绍Leetcode--出界的路径数,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

给定一个 m × n 的网格和一个球。球的起始坐标为 (i,j) ,你可以将球移到相邻的单元格内,或者往上、下、左、右四个方向上移动使球穿过网格边界。但是,你最多可以移动 N 次。找出可以将球移出边界的路径数量。答案可能非常大,返回 结果 mod 109 + 7 的值。

示例 1:

输入: m = 2, n = 2, N = 2, i = 0, j = 0
输出: 6
解释:
在这里插入图片描述

示例 2:

输入: m = 1, n = 3, N = 3, i = 0, j = 1
输出: 12
解释:
在这里插入图片描述

说明:

球一旦出界,就不能再被移动回网格内。
网格的长度和高度在 [1,50] 的范围内。
N 在 [0,50] 的范围内。

思路:

1.非法的坐标不是被弃之不理,而是把上一步当前位置的元素代表的可能数加到结果的总个数中,并且此题dp数组每个元素存的不是走到这里的概率,而是走到这里的可能总路径数。注意在运算过程要取模。

def findPaths(self, m, n, N, i, j):""":type m: int:type n: int:type N: int:type i: int:type j: int:rtype: int"""if N == 0:return 0lastStepCount = [[0 for i in range(n)] for j in range(m)]   #对之前坐标进行遍历move = [[0, 1], [1, 0], [0, -1], [-1, 0]]    #一次只能移动一个上下左右lastStepCount[i][j] = 1        #初始化定义res, mod = 0, 1000000007     for step in range(1, N + 1):       currCount = [[0 for i in range(n)] for j in range(m)]    #正则表达式循环现在的坐标for x in range(m):for y in range(n):for direction in move:									lastX, lastY = x + direction[0], y + direction[1]		#对坐标进行位置移动if any([lastX < 0, lastX >= m, lastY < 0, lastY >= n]):     res = (res + lastStepCount[x][y]) % mod      #如果出界了,就直接求出结果else:   		#否则就继续迭移动currCount[x][y] = (currCount[x][y] + lastStepCount[lastX][lastY]) % modlastStepCount = currCount     #重新赋值return res

时间复杂度O(N * m * n)

2.从坐标[i, j]到其上、下、左、右都需要移动1步,剩余N-1步,那么问题转化为从上、下、左、右移动N-1步,一共有多少种方法。

class Solution:def findPaths(self, m, n, N, i, j):""":type m: int:type n: int:type N: int:type i: int:type j: int:rtype: int"""tmp=[[[0 for i in range(n)] for j in range(m)] for k in range(N+1)]  #坐标和移动次数的三维数组for k in range(1,N+1):																			for p in range(m):				for q in range(n):					if 0==p:						#如果横坐标是0up=1								#就可以向上走else:up=tmp[k-1][p-1][q]			#否则下就要走N-1步if m-1==p:								#如果横坐标已经是下移动1了,那么相当于已经向下走了1down=1else:down=tmp[k-1][p+1][q]		#否则就是横坐标+1的地方走N-1步if 0==q:left=1else:left=tmp[k-1][p][q-1]						#同理左右也是一样if n-1==q:right=1else:right=tmp[k-1][p][q+1]tmp[k][p][q]=(up+down+left+right)%1000000007   #注意最后的结果要mod那个数return tmp[N][i][j]

时间复杂度是O(N * m * n)
其实这两种方法大体上都是一样的,都是想要求到上一步的情况,那么就直接用DP状态转移来进行递归。

这篇关于Leetcode--出界的路径数的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/413907

相关文章

哈希leetcode-1

目录 1前言 2.例题  2.1两数之和 2.2判断是否互为字符重排 2.3存在重复元素1 2.4存在重复元素2 2.5字母异位词分组 1前言 哈希表主要是适合于快速查找某个元素(O(1)) 当我们要频繁的查找某个元素,第一哈希表O(1),第二,二分O(log n) 一般可以分为语言自带的容器哈希和用数组模拟的简易哈希。 最简单的比如数组模拟字符存储,只要开26个c

hdu2544(单源最短路径)

模板题: //题意:求1到n的最短路径,模板题#include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<queue>#include<set>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#i

poj 1734 (floyd求最小环并打印路径)

题意: 求图中的一个最小环,并打印路径。 解析: ans 保存最小环长度。 一直wa,最后终于找到原因,inf开太大爆掉了。。。 虽然0x3f3f3f3f用memset好用,但是还是有局限性。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#incl

leetcode-24Swap Nodes in Pairs

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode swapPairs(L

leetcode-23Merge k Sorted Lists

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode mergeKLists

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟)

【每日一题】LeetCode 2181.合并零之间的节点(链表、模拟) 题目描述 给定一个链表,链表中的每个节点代表一个整数。链表中的整数由 0 分隔开,表示不同的区间。链表的开始和结束节点的值都为 0。任务是将每两个相邻的 0 之间的所有节点合并成一个节点,新节点的值为原区间内所有节点值的和。合并后,需要移除所有的 0,并返回修改后的链表头节点。 思路分析 初始化:创建一个虚拟头节点

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

【408DS算法题】039进阶-判断图中路径是否存在

Index 题目分析实现总结 题目 对于给定的图G,设计函数实现判断G中是否含有从start结点到stop结点的路径。 分析实现 对于图的路径的存在性判断,有两种做法:(本文的实现均基于邻接矩阵存储方式的图) 1.图的BFS BFS的思路相对比较直观——从起始结点出发进行层次遍历,遍历过程中遇到结点i就表示存在路径start->i,故只需判断每个结点i是否就是stop

Android Environment 获取的路径问题

1. 以获取 /System 路径为例 /*** Return root of the "system" partition holding the core Android OS.* Always present and mounted read-only.*/public static @NonNull File getRootDirectory() {return DIR_ANDR