We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Project Euler #86: Cuboid route
Project Euler #86: Cuboid route
Sort by
recency
|
14 Discussions
|
Please Login in order to post a comment
you can find my java solution here
Solved this problem in F#. Insights:
If anybody is interested, I can write down my approach to solve this problem.
Curious to know how it works to compute million pythagorean triplets within the time limit. I've been using Euclid's formula, but that
m += 1
,n += 2
is supposedly killing it. It takes almost 5 seconds to generate triplets up to (with most of the time spent on finding the valid primitive triplets), let alone .Perhaps it is because of the upper bound you mentioned? I don't know where that
1.1*sqrt(M)
comes from, the bound I used was a while-loop with conditionm**2 - (m-1)**2 <= M
. When I look closely, this condition is unnecessarily loose, as it does not take into account the fact that eithera >= b
orb >= a
should be true, while and .EDIT: I tried using this upper bound, and got WA for Test Cases #3 through #9.
EDIT 2: Tried with
sqrt(3*M)
and it works. Evensqrt(2*M)
did not work, where it was missing some pairs likem=917, n=218
. Maybe the difference is due to the way I handled the triples, as I append whenevera >= b_plus_c / 2 + b_plus_c % 2
orb_plus_c >= a / 2 + a % 2
.I'm quite sure that this condition would fail again for much larger input. The naming here is quite confusing, as
b_plus_c >= a / 2 + a % 2
in fact meansb >= a_plus_c / 2 + a_plus_c % 2
, but I just handle them all in one place.EDIT 3: By the way, I find it interesting that no one mentioned another key insight involved in solving this problem, that is to visualise the unfolding of the 3D box. At the beginning, I was trying to solve the equation and find the derivative of it to look for a minimum, thinking about how this problem is supposed to be 35% difficulty.
Yes, the upper bound is crucial in finding all the Pythagorean triplets within the time limit.
Note that the M in my upper bound definition is not the same as the M in the problem statement. Sorry for the confusion about that. This might explain the difference in your findings about the upper bound.
The other insight you mention is crucial as well. I didn't want to spoil too much :-)
I hope this clears some things up.
For me I needed to use m up to 1000 in the pythagorean triples 2mn, m^2-n^2, m^2+n^2 to generate the sides large enough to satisfy all the test cases that's sides bounded by M up to 400,000. The bound 1.1sqrt(M) is not enough. Because we need to satisfy max(2mn, m^2-n^2) < 800000 and min(2mn,m^2-n^2)<4000000. This can happen beyond the bound 1.1sqrt(M).
. Would definitively advise to complete 75, and use roll distribution on the answer of 75. I dont think there is a way to solve it without generating pythagorean triplet correctly.
Nice question! Im am curious if anyone managed to solve it with Python 3?
My Python 3 solution was just a bit too slow. on my personal comuter it took 15s to compute the table of solutions, which is more than the limit of 10s. However when I translated my solution to Java it finishes in just 0.2s which is much less than the limit of 4s.
Maybe the limit is a bit too low for Python?
Solved it in python 3 in 2 seconds.
python 2 in 1.8 s