62. Unique Paths
生活随笔
收集整理的這篇文章主要介紹了
62. Unique Paths
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
description:
https://leetcode.com/problems/unique-paths/
機器人從一堆方格的左上角走到右下角,只能往右或者往下走 ,問有幾種走法
Note:
Example:
Example 1:Input: m = 3, n = 2 Output: 3 Explanation: From the top-left corner, there are a total of 3 ways to reach the bottom-right corner: 1. Right -> Right -> Down 2. Right -> Down -> Right 3. Down -> Right -> RightExample 2:Input: m = 7, n = 3 Output: 28answer:
class Solution { public:int uniquePaths(int m, int n) {double sum = 1, up = 1; // 這里一定是 double int mi = m < n ? m : n; // 必須先找出最小的,雖然數學上兩個排列相等,但是程序里因為數的范圍限制神馬的不清楚,會超時for (int i = 0; i < mi - 1; i++) {sum *= m + n - 2 - i;up *= i + 1;}return (int)(sum / up); // 最后要把double 變到 integer} };relative point get√:
hint :
就是在總步數 m + n - 2 里選 n-1 步 (m - 1)是往下走(右)
轉載于:https://www.cnblogs.com/forPrometheus-jun/p/11332791.html
總結
以上是生活随笔為你收集整理的62. Unique Paths的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 大姐,你是不是得了尿频?
- 下一篇: IoC--structuremap