iT邦幫忙

2023 iThome 鐵人賽

DAY 10
0
自我挑戰組

leetcode題目分享系列 第 10

[Day 10] 1359. Count All Valid Pickup and Delivery Options

  • 分享至 

  • xImage
  •  

解法之後補...(嘗試看懂中...

ref:https://leetcode.com/problems/count-all-valid-pickup-and-delivery-options/solutions/4024280/99-57-dp-math-recursion/?envType=daily-question&envId=2023-09-10

class Solution {
const int MOD = 1e9 + 7;
public:
    int countOrders(int n) {
        long long count = 1;
        for(int i = 2; i <= n; i++){
            count = (count * (2 * i - 1) * i) % MOD;
        }
        return (int)count;
    }
};

上一篇
[Day 9] 377. Combination Sum IV
下一篇
[Day 11] 1282. Group the People Given the Group Size They Belong To
系列文
leetcode題目分享30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言