zoukankan      html  css  js  c++  java
  • Project Euler 44: Find the smallest pair of pentagonal numbers whose sum and difference is pentagonal.

    In Problem 42 we dealt with triangular problems, in Problem 44 of Project Euler we deal with pentagonal number, I can only wonder if we have to deal with septagonal numbers in Problem 46. Anyway the problem reads

    Pentagonal numbers are generated by the formula, Pn=n(3n-1)/2. The first ten pentagonal numbers are:

    1, 5, 12, 22, 35, 51, 70, 92, 117, 145, …

    It can be seen that P4 + P7 = 22 + 70 = 92 = P8. However, their difference, 70 – 22 = 48, is not pentagonal.

    Find the pair of pentagonal numbers, Pj and Pk, for which their sum and difference is pentagonal and D = |Pk – Pj| is minimised; what is the value of D?

    I have found a solution which I will present to you in just a few lines, but I must admit that I haven’t been able to justify why it is the right solution it gives us. The solution I have made just finds a solution to the problem which happens to the right solution.

    I did not want to generate a list of pentagonal numbers, so I wanted to make a small function which checks if a given number is pentagonal by checking if the inverse function yields an integer, just like in the solution to  Problem 42. We could rather easily calculate the inverse function as we did with the inverse function for triangular numbers, or we can cheat and peak at the pentagonal number entry at Wikipedia.

    The inverse function is

    displaystyle n = frac{sqrt{24x  1}  1}{6}

    That enables us to make a C# function that checks if a number is pentagonal

    1
    2
    3
    4
    private bool isPentagonal(int number) {
        double penTest = (Math.Sqrt(1 + 24 * number) + 1.0) / 6.0;
        return penTest == ((int)penTest);
    }

    Once we have this crucial function we can make two nested loops to check pentagonal numbers until we find two where the sum and difference are pentagonal as well. I am frustrated since I can’t figure out why this one is the first. I can prove that it is indeed minimal by testing other numbers until the difference of two numbers reach the result of this problem. However I haven’t done that.

    The outer loop of the algorithm counts upwards generating and the inner loop counting downwards testing all pentagonal numbers less than the one generated by the outer loop. The code looks like

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    int result = 0;
    bool notFound = true;
    int i = 1;
     
    while (notFound) {
        i++;
        int n = i * (3 * i - 1) / 2;
     
        for (int j = i-1; j > 0; j--) {
            int m = j * (3 * j - 1) / 2;
            if (isPentagonal(n - m) && isPentagonal(n + m)) {
                result = n-m;
                notFound = false;
                break;
            }
        }
    }

    and gives the result

    1
    2
    3
    k = 2167, j = 1020
    The value of D is 5482660
    Solution took 35 ms

    Wrapping up

    I can see that many other people also can’t give the definitive answer to why the result is correct. If you understand the problem better than I do, please let me know exactly why I find the right solution.

    You can as usual find the source code for the problem here.

    ref

  • 相关阅读:
    free pascal dialect
    free pascal
    free pascal
    跳槽后在新公司的一点感悟
    安全攻防技能30讲
    设计模式之美(二)——设计模式
    设计模式之美(一)——设计原则、规范与重构
    数据结构和算法躬行记(8)——动态规划
    倾斜摄影实景三维在智慧工厂 Web 3D GIS 数字孪生应用
    智慧文旅促进旅游业发展,可视化带你云游武夷
  • 原文地址:https://www.cnblogs.com/forcheryl/p/4899714.html
Copyright © 2011-2022 走看看