479. Largest Palindrome Product

Posted yaoyudadudu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了479. Largest Palindrome Product相关的知识,希望对你有一定的参考价值。

问题描述:

Find the largest palindrome made from the product of two n-digit numbers.

Since the result could be very large, you should return the largest palindrome mod 1337.

Example:

Input: 2

Output: 987

Explanation: 99 x 91 = 9009, 9009 % 1337 = 987

 

Note:

The range of n is [1,8].

 

解题思路:

没有思路,参考了GrandYang的解法

先找n个数字能够组成的最大值upper和最小值lower

最大的值的长度应为2n

我们可以从上界upper将其做镜面反射构成一个回文然后检查是否存在两个值可以得到这样的乘积。

 

代码:

class Solution {
public:
    int largestPalindrome(int n) {
        int upper = pow(10, n) - 1, lower = upper/10;
        for(int i = upper; i > lower; i--){
            string s = to_string(i);
            long p = stol(s + string(s.rbegin(), s.rend()));
            for(long j = upper; j*j > p; --j){
                if(p % j == 0) return p % 1337;
            }
        }
        return 9;
    }
};

 

以上是关于479. Largest Palindrome Product的主要内容,如果未能解决你的问题,请参考以下文章

easy479. Largest Palindrome Product

LeetCode 479 - Largest Palindrome Product - Hard ( Python)

479 Largest Palindrome Product 最大回文数乘积

Largest palindrome product

[LeetCode] Largest Palindrome Product 最大回文串乘积

Project Euler P4 Largest palindrome product 题解