Project Euler 95:Amicable chains 亲和数链

Amicable chains

The proper divisors of a number are all the divisors excluding the number itself. For example, the proper divisors of 28 are 1, 2, 4, 7, and 14. As the sum of these divisors is equal to 28, we call it a perfect number.

Interestingly the sum of the proper divisors of 220 is 284 and the sum of the proper divisors of 284 is 220, forming a chain of two numbers. For this reason, 220 and 284 are called an amicable pair.

Perhaps less well known are longer chains. For example, starting with 12496, we form a chain of five numbers:

12496 → 14288 → 15472 → 14536 → 14264 (→ 12496 → …)

Since this chain returns to its starting point, it is called an amicable chain.

Find the smallest member of the longest amicable chain with no element exceeding one million.



亲和数链

一个数除了本身之外的因数称为真因数。例如,28的真因数是1、2、4、7和14。这些真因数的和恰好为28,因此我们称28是完全数。

有趣的是,220的真因数之和是284,同时284的真因数之和是220,构成了一个长度为2的链,我们也称之为亲和数对。

有一些更长的序列并不太为人所知。例如,从12496出发,可以构成一个长度为5的链:

12496 → 14288 → 15472 → 14536 → 14264 (→ 12496 → …)

由于这条链最后又回到了起点,我们称之为亲和数链。

找出所有元素都不超过一百万的亲和数链中最长的那条,并给出其中最小的那个数。

解题

暴力应该可以的,直觉是简单的。如果对每个数求出其真因子的和,然后再求真因子和的真因子和,这样的时间复杂度很好,表示没有跑出来结果。然后发现这里的计算真因子的和的过程中重复的数很多的。所以可以先求出真因子的数的和,这样就是一个数组,下面的问题就是在数组中求第一个最长链的开始的值,这里开始没有理解对,以为是求最长链中许多数中的最小值那个,但是发现最长链的最小值就是其第一个值。还有上面也说了是求的第一个最长链,所以主要小于100万的最长链长度是28 有好多个的。

那么如何求亲和数链?

注意:

1.不是每个数有亲和数链的,如这个链接说的也是比较有意思的

问题还是如何找到链?

很显然的是我们发现 从a 开始的链会从 a结束,这个是有顺序要求的

可以发现,是亲和数链的时候不会出现环,这个很显然,但是也是解题的关键

所以发现环了就要结束

然后再判断结束时候的值和原始开始的值是否相等,相同求其长度。

JAVA

package Level3;

import java.util.TreeSet;

public class PE094{
    public static void run2(){
        int MAX = 1000000;
        int[] next = new int[MAX];
        // 真因数的和
        for(int i=2;i<MAX;i++)
            next[i] = 1;

        for(int i=2;i<MAX/2+1;i++)
            for(int j=2*i;j<MAX;j+=i){
                next[j] +=i;
            }
        int longest = -1;
        int subMIN = Integer.MAX_VALUE;
        int MIN = Integer.MAX_VALUE;
        int j =2;
        TreeSet<Integer> set = new TreeSet<Integer>();
        for(int i=2+8;i<MAX;i++){
            set.clear();
            j = i;
            // 记录最小值
            subMIN = j;
            set.add(j);
            while(true){
                j = next[j];
                if(j>=MAX) break;
                // 记录最小值
                subMIN = subMIN>j?j:subMIN;
                // 出现循环 结束
                if(set.contains(j)==true)
                    break;
                set.add(j);
            }
            if( j==i ){
                // 这个的不好,在相同的长度时候 进行了更新
//                longest = Math.max(set.size(), longest);
                // 记录长度最小的那个 这里在相同的长度时候只记录最小的
                if(set.size() >longest){
                longest = set.size();
                MIN = subMIN;
                System.out.println(longest +"   "+MIN + "  "+ j);
                }
            }
        }
        System.out.println(longest +"   "+MIN);
    }
    public static void main(String[] args) {
        long t0 = System.currentTimeMillis();
        run2();
        long t1 = System.currentTimeMillis();
        long t = t1 - t0;
        System.out.println("running time="+t/1000+"s"+t%1000+"ms");

    }
}

结果

  28  28
  220  220
  12496  12496
  14316  14316
  14316
running time=2s415ms

第一个数是链的长度,链的最小值,链的第一个数

其实是比较多的,题目求的是第一个最长链,直接看题目容易误解。

在上面求真因数的和中,和筛选法求素数的思想很类似,知道数的规律,进行求解。

Python 是直接在论坛中找到

# coding=gbk

import time as time 

def run():
    MAX = 1000000
    d = [1]*MAX
    for i in xrange(2,MAX//2):
        for j in xrange(2*i,MAX,i):
            d[j]+=i
    max_cl = 0
    for i in xrange(2,MAX):
        n,chain = i,[]
        while d[n]<MAX:
            d[n],n = MAX+1,d[n]
            try:k=chain.index(n)
            except ValueError:chain.append(n)
            else:
                if len(chain[k:]) >max_cl:
                    max_cl,min_link = len(chain[k:]),min(chain[k:])
    print min_link
t0 = time.time()
run()
t1 = time.time()
print "running time=",(t1-t0),"s"
running time= 5.47899985313 s
时间: 2024-10-11 07:10:35

Project Euler 95:Amicable chains 亲和数链的相关文章

Python练习题 048:Project Euler 021:10000以内所有亲和数之和

本题来自 Project Euler 第21题:https://projecteuler.net/problem=21 ''' Project Euler: Problem 21: Amicable numbers Let d(n) be defined as the sum of proper divisors of n (numbers less than n which divide evenly into n). If d(a) = b and d(b) = a, where a ≠ b

Python练习题 047:Project Euler 020:阶乘结果各数字之和

本题来自 Project Euler 第20题:https://projecteuler.net/problem=20 ''' Project Euler: Problem 20: Factorial digit sum n! means n × (n ? 1) × ... × 3 × 2 × 1 For example, 10! = 10 × 9 × ... × 3 × 2 × 1 = 3628800, and the sum of the digits in the number 10! i

Python练习题 046:Project Euler 019:每月1日是星期天

本题来自 Project Euler 第19题:https://projecteuler.net/problem=19 ''' How many Sundays fell on the first of the month during the twentieth century (1 Jan 1901 to 31 Dec 2000)? Answer: 171 ''' from datetime import * firstDay = date(1901,1,1) lastDay = date(

Python练习题 035:Project Euler 007:第10001个素数

本题来自 Project Euler 第7题:https://projecteuler.net/problem=7 # Project Euler: Problem 7: 10001st prime # By listing the first six prime numbers: # 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13. # What is the 10 001st prime number? # Answer

Python练习题 034:Project Euler 006:和平方与平方和之差

本题来自 Project Euler 第6题:https://projecteuler.net/problem=6 # Project Euler: Problem 6: Sum square difference # The sum of the squares of the first ten natural numbers is, # 1**2 + 2**2 + ... + 10**2 = 385 # The square of the sum of the first ten natur

Project Euler 126 - Cuboid layers

这题先是推公式- 狂用不完全归纳+二次回归,最后推出这么一个奇怪的公式 f(t,x,y,z)=4(t?1)(x+y+z+t?2)+2(xy+yz+xz) 表示长宽高为x .y .z 的立方体第t 层放的立方体的个数. 接下来就是算答案了- 方法很简单:暴力 但是暴力还是有技巧的,开始我是直接从1到1000枚举t .x .y .z ,但这样出不来结果. 换成下面代码里的方法就行了. 1 #include <iostream> 2 #include <cstdio> 3 #includ

Project Euler 第一题效率分析

Project Euler: 欧拉计划是一系列挑战数学或者计算机编程问题,解决这些问题需要的不仅仅是数学功底. 启动这一项目的目的在于,为乐于探索的人提供一个钻研其他领域并且学习新知识的平台,将这一平台打造一个有趣和休闲 的环境. 项目主页:https://projecteuler.net 第一题 Multiples of 3 and 5 If we list all the natural numbers below 10 that are multiples of 3 or 5, we ge

Python练习题 042:Project Euler 014:最长的考拉兹序列

本题来自 Project Euler 第14题:https://projecteuler.net/problem=14 ''' Project Euler: Problem 14: Longest Collatz sequence The following iterative sequence is defined for the set of positive integers: n → n/2 (n is even) n → 3n + 1 (n is odd) Using the rule

Python练习题 041:Project Euler 013:求和、取前10位数值

本题来自 Project Euler 第13题:https://projecteuler.net/problem=13 # Project Euler: Problem 13: Large sum # Work out the first ten digits of the sum of the following one-hundred 50-digit numbers. # Answer: 5537376230 numbers = '''371072875339021027987979982