1359. Count All Valid Pickup and Delivery Options

Posted wentiliangkaihua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1359. Count All Valid Pickup and Delivery Options相关的知识,希望对你有一定的参考价值。

Given n orders, each order consist in pickup and delivery services. 

Count all valid pickup/delivery possible sequences such that delivery(i) is always after of pickup(i). 

Since the answer may be too large, return it modulo 10^9 + 7.

 

Example 1:

Input: n = 1
Output: 1
Explanation: Unique order (P1, D1), Delivery 1 always is after of Pickup 1.

Example 2:

Input: n = 2
Output: 6
Explanation: All possible orders: 
(P1,P2,D1,D2), (P1,P2,D2,D1), (P1,D1,P2,D2), (P2,P1,D1,D2), (P2,P1,D2,D1) and (P2,D2,P1,D1).
This is an invalid order (P1,D2,P2,D1) because Pickup 2 is after of Delivery 2.

Example 3:

Input: n = 3
Output: 90

 

Constraints:

  • 1 <= n <= 500
class Solution {
    public int countOrders(int n) {
        long res = 1, mod = (long)1e9 + 7;
        for (int i = 1; i <= n; ++i)
            res = res * (i * 2 - 1) * i % mod;
        return (int)res;
    }
}

技术图片

 

 https://leetcode.com/problems/count-all-valid-pickup-and-delivery-options/discuss/516968/JavaC%2B%2BPython-Easy-and-Concise

技术图片

 

 

class Solution {
    public int countOrders(int n) {
        long MODULO = (long) (1e9 + 7);
        long ans = 1;
        for (int i = 2; i <= n; i++) {
            int spaceNum = (i-1)*2 + 1;
            ans *= spaceNum * (spaceNum + 1) / 2;
            ans %= MODULO;
        }
        return (int) ans;
    }
}

 

以上是关于1359. Count All Valid Pickup and Delivery Options的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode] Valid Anagram Find All Anagrams in a String

当值为空时,Django modelSerializer form.is_valid() 为真

什么错误phpmyadmin - count():参数必须是一个数组或一个实现Countable的对象,行号:40

数据库中count(all 表达式)函数怎麽用啊

error: pasting “(“ and “1“ does not give a valid preprocessing token

Berkeley DB 相当于 SELECT COUNT(*) All, SELECT COUNT(*) WHERE LIKE "%...%"