I need to generate all possible (a, b, c)
such as, a * b * c = V
, where V is function parameter
.
Is there some right way to complete my task? I try use full brute-force by a, b, c
, but It is very slow. It is due to the fact, that V
may be more than 10^4
.
P.S. a, b, c
is integer numbers.
I'm guessing you're doing something like this:
You can reduce the complexity from O(N^3) to O(N^2) by deriving the value of C from the already-known values of A and B.
This isn't the most efficient way to do it, but it's simple and may be good enough for values of V around 10**4.