美文网首页
LeetCode #1006 Clumsy Factorial

LeetCode #1006 Clumsy Factorial

作者: air_melt | 来源:发表于2022-02-11 20:33 被阅读0次

1006 Clumsy Factorial 笨阶乘

Description:
The factorial of a positive integer n is the product of all positive integers less than or equal to n.

For example, factorial(10) = 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1.
We make a clumsy factorial using the integers in decreasing order by swapping out the multiply operations for a fixed rotation of operations with multiply '*', divide '/', add '+', and subtract '-' in this order.

For example, clumsy(10) = 10 * 9 / 8 + 7 - 6 * 5 / 4 + 3 - 2 * 1.
However, these operations are still applied using the usual order of operations of arithmetic. We do all multiplication and division steps before any addition or subtraction steps, and multiplication and division steps are processed left to right.

Additionally, the division that we use is floor division such that 10 * 9 / 8 = 90 / 8 = 11.

Given an integer n, return the clumsy factorial of n.

Example:

Example 1:

Input: n = 4
Output: 7
Explanation: 7 = 4 * 3 / 2 + 1

Example 2:

Input: n = 10
Output: 12
Explanation: 12 = 10 * 9 / 8 + 7 - 6 * 5 / 4 + 3 - 2 * 1

Constraints:

1 <= n <= 10^4

题目描述:
通常,正整数 n 的阶乘是所有小于或等于 n 的正整数的乘积。例如,factorial(10) = 10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1。

相反,我们设计了一个笨阶乘 clumsy:在整数的递减序列中,我们以一个固定顺序的操作符序列来依次替换原有的乘法操作符:乘法(*),除法(/),加法(+)和减法(-)。

例如,clumsy(10) = 10 * 9 / 8 + 7 - 6 * 5 / 4 + 3 - 2 * 1。然而,这些运算仍然使用通常的算术运算顺序:我们在任何加、减步骤之前执行所有的乘法和除法步骤,并且按从左到右处理乘法和除法步骤。

另外,我们使用的除法是地板除法(floor division),所以 10 * 9 / 8 等于 11。这保证结果是一个整数。

实现上面定义的笨函数:给定一个整数 N,它返回 N 的笨阶乘。

示例 :

示例 1:

输入:4
输出:7
解释:7 = 4 * 3 / 2 + 1

示例 2:

输入:10
输出:12
解释:12 = 10 * 9 / 8 + 7 - 6 * 5 / 4 + 3 - 2 * 1

提示:

1 <= N <= 10000
-2^31 <= answer <= 2^31 - 1 (答案保证符合 32 位整数。)

思路:

数学法
按 4 个一组分组
(n - 3) + ((n - 4) * (n - 5) / (n - 6)) = 0
对 4 取余讨论即可
时间复杂度为 O(1), 空间复杂度为 O(1)

代码:
C++:

class Solution 
{
public:
    int clumsy(int N) 
    {
        return N == 1 ? 1 : N == 2 ? 2 : N == 3 ? 6 : N == 4 ? 7 : N % 4 == 0 ? N + 1 : N % 4 <= 2 ? N + 2 : N - 1;
    }
};

Java:

class Solution {
    public int clumsy(int N) {
        return N == 1 ? 1 : N == 2 ? 2 : N == 3 ? 6 : N == 4 ? 7 : N % 4 == 0 ? N + 1 : N % 4 <= 2 ? N + 2 : N - 1;
    }
}

Python:

class Solution:
    def clumsy(self, N: int) -> int:
        return 1 if N == 1 else 2 if N == 2 else 6 if N == 3 else 7 if N == 4 else N + 1 if not N % 4 else N + 2 if N % 4 < 3 else N - 1

相关文章

网友评论

      本文标题:LeetCode #1006 Clumsy Factorial

      本文链接:https://www.haomeiwen.com/subject/odyakrtx.html