2

给定 2 个正整数列表,找出有多少种方法可以从每个列表中选择一个数,使它们的总和为质数。

我的代码太慢了因为我有 list1 和 list 2,每个都包含 50000 个数字。那么有什么方法可以让它更快,以便在几分钟而不是几天内解决它?:)

    # 2 is the only even prime number
    if n == 2: return True

    # all other even numbers are not primes
    if not n & 1: return False

    # range starts with 3 and only needs to go 
    # up the squareroot of n for all odd numbers
    for x in range(3, int(n**0.5)+1, 2):
        if n % x == 0: return False

    return True



for i2 in l2:
    for i1 in l1:
        if isprime(i1 + i2):
            n = n + 1 # increasing number of ways
            s = "{0:02d}: {1:d}".format(n, i1 + i2)
            print(s) # printing out
4

3 回答 3

2

草图:

  1. 按照@Steve 的建议,首先找出所有素数 <= max(l1) + max(l2)。我们称之为列表primes。注意: primes实际上不需要是列表;相反,您可以一次生成最多一个素数。

  2. 交换您的列表(如有必要),以便这l2是最长的列表。然后把它变成一个集合: l2 = set(l2).

  3. 排序l1( l1.sort())。

然后:

for p in primes:
    for i in l1:
        diff = p - i
        if diff < 0:
            # assuming there are no negative numbers in l2;
            # since l1 is sorted, all diffs at and beyond this
            # point will be negative
            break
        if diff in l2:
           # print whatever you like
           # at this point, p is a prime, and is the
           # sum of diff (from l2) and i (from l1)

唉,如果l2是,例如:

l2 = [2, 3, 100000000000000000000000000000000000000000000000000]

这是不切实际的。正如您的示例一样,它依赖于max(max(l1), max(l2))“相当小”。

充实

唔!您在评论中说列表中的数字最长为 5 位。所以他们不到100,000。你在一开始就说这个列表每个有 50,000 个元素。因此,它们每个都包含大约一半的小于 100,000 的所有可能整数,并且您将有大量的素数和。如果您想进行微优化,这一切都很重要;-)

无论如何,由于最大可能的总和小于 200,000,因此任何筛分方式都足够快 - 这将是运行时的一个微不足道的部分。这是其余的代码:

def primesum(xs, ys):
    if len(xs) > len(ys):
        xs, ys = ys, xs
    # Now xs is the shorter list.
    xs = sorted(xs)  # don't mutate the input list
    sum_limit = xs[-1] + max(ys)  # largest possible sum
    ys = set(ys)     # make lookups fast
    count = 0
    for p in gen_primes_through(sum_limit):
        for x in xs:
            diff = p - x
            if diff < 0:
                # Since xs is sorted, all diffs at and
                # beyond this point are negative too.
                # Since ys contains no negative integers,
                # no point continuing with this p.
                break
            if diff in ys:
                #print("%s + %s = prime %s" % (x, diff, p))
                count += 1
    return count

我不会提供我的gen_primes_through(),因为它无关紧要。从其他答案中选择一个,或者自己写。

这是提供测试用例的便捷方式:

from random import sample
xs = sample(range(100000), 50000)
ys = sample(range(100000), 50000)
print(primesum(xs, ys))

注意:我使用的是 Python 3。如果您使用的是 Python 2,请xrange()使用range().

在两次运行中,他们每次运行大约 3.5 分钟。这就是您一开始就要求的(“分钟而不是天”)。Python 2 可能会更快。返回的计数是:

219,334,097

219,457,533

当然,可能总和的总数是 50000**2 == 2,500,000,000。

关于时机

这里讨论的所有方法,包括您原来的方法,所花费的时间与两个列表长度的乘积成正比。所有的摆弄都是为了减少常数因子。与您的原始版本相比,这是一个巨大的改进:

def primesum2(xs, ys):
    sum_limit = max(xs) + max(ys)  # largest possible sum
    count = 0
    primes = set(gen_primes_through(sum_limit))
    for i in xs:
        for j in ys:
            if i+j in primes:
                # print("%s + %s = prime %s" % (i, j, i+j))
                count += 1
    return count

也许你会更好地理解这一点。为什么会有很大的改进?因为它用isprime(n)极快的集合查找代替了昂贵的功能。它仍然需要与 成比例的时间len(xs) * len(ys),但是通过用非常便宜的操作替换非常昂贵的内循环操作来削减“比例常数”。

而且,事实上,在许多情况下也primesum2()比我的要快。primesum()在您的特定情况下primesum()更快的是,只有大约 18,000 个质数小于 200,000。因此,迭代素数(就像这样)比迭代具有 50,000 个元素的列表要快得多。primesum()

针对这个问题的“快速”通用函数需要根据输入选择不同的方法。

于 2013-10-12T21:56:04.310 回答
1

您应该使用埃拉托色尼筛法来计算素数。

您还在计算每个可能的总和组合的素数。相反,请考虑使用列表中的总和找到您可以达到的最大值。生成直到最大值的所有素数的列表。

在将数字相加时,您可以查看该数字是否出现在您的素数列表中。

于 2013-10-12T21:42:08.723 回答
1

我会找到每个范围内的最高数字。素数的范围是最高数字的总和。

这是筛选素数的代码:

def eras(n):
    last = n + 1
    sieve = [0, 0] + list(range(2, last))
    sqn = int(round(n ** 0.5))
    it = (i for i in xrange(2, sqn + 1) if sieve[i])
    for i in it:
        sieve[i * i:last:i] = [0] * (n // i - i + 1)
    return filter(None, sieve)

找到最多 10 000 000 个素数大约需要 3 秒。然后我会使用与n ^ 2生成总和相同的算法。我认为有一个n logn算法,但我想不出它。

它看起来像这样:

from collections import defaultdict
possible = defaultdict(int)
for x in range1:
    for y in range2:
        possible[x + y] += 1

def eras(n):
    last = n + 1
    sieve = [0, 0] + list(range(2, last))
    sqn = int(round(n ** 0.5))
    it = (i for i in xrange(2, sqn + 1) if sieve[i])
    for i in it:
        sieve[i * i:last:i] = [0] * (n // i - i + 1)
    return filter(None, sieve)

n = max(possible.keys())
primes = eras(n)
possible_primes = set(possible.keys()).intersection(set(primes))

for p in possible_primes:
    print "{0}: {1} possible ways".format(p, possible[p])
于 2013-10-12T22:22:21.463 回答