显然本题解法与上一题完全相同,将初值修改为$(2,2,3)$即可,结果是$4137330$。
def A(x,y,z):
return x-2*y+2*z, 2*x-y+2*z, 2*x-2*y+3*z
def B(x,y,z):
return 2*x+y+2*z, x+2*y+2*z, 2*x+2*y+3*z
def C(x,y,z):
return -2*x+y+2*z, -x+2*y+2*z, -2*x+2*y+3*z
bound=75000000
r=0
h=[(2,2,3)]
while h:
a,b,c=h.pop()
r+=1
u,v,w=A(a,b,c)
if u+v+w<=bound:
h.append((u,v,w))
u,v,w=B(a,b,c)
if u+v+w<=bound:
h.append((u,v,w))
if a!=b:
u,v,w=C(a,b,c)
if u+v+w<=bound:
h.append((u,v,w))
if r%1000000==0:
print r/1000000,"million triples checked"
print r
|