-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy patheuler-077.py
65 lines (57 loc) · 1022 Bytes
/
euler-077.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
try:
import psyco
psyco.full()
except ImportError:
pass
"""
4 [[2,1]]
5 [[3,1]]
6 [[4,1],[3,1]]
7 [[4,1]]
8 [[5,1], [4,2]]
9 [[7,1],[5,2]]
10 [[7,1], [
"""
import primes
import sys
def x(i, n, a) :
y = n - i
b = a[y]
if i <= 1 : return 0
if i >= y :
s = sum(t[1] for t in b) + (1 if primes.isPrime(y) else 0)
else :
s = sum(t[1] for t in b if t[0] <= i)
return s
def score(aa) :
count = 0
for i in range(len(aa)) :
j, x = aa[i]
count += x
return count
def euler76(limit) :
p = primes.primes(limit)
p.append(limit+2)
a = [ [[0,0]], [[1,0]], [[2,0]] ]
p_counter = 1
for i in range(3, limit+1) :
print >> sys.stderr, i, "\r",
d = []
for j in range(p_counter, -1, -1) :
pp = p[j]
if pp >= i : continue
y = x(pp, i, a)
if y :
d.append( [pp, y] )
if i == p[p_counter] :
p_counter += 1
if score(d) >= 5000 :
return i
a.append(d)
#s = sum(t[1] for t in a[limit])
#return s
return 0
if __name__ == "__main__" :
c = euler76(1000*1000)
print
print c