the equation looks like that:
x1 + x2 + x3 + x4 + ... + xk = n
and ( 0 <= n <= 1000, 0 < k <=1000 )
example:
n=3 and k=2
3+0=3 2+1=3
0+3=3 1+2=3
output: 4 // count of equations
I can't think of anything, even the worst 100 loop way to do this.
|
the equation looks like that: x1 + x2 + x3 + x4 + ... + xk = n and ( 0 <= n <= 1000, 0 < k <=1000 ) example:
I can't think of anything, even the worst 100 loop way to do this. |
||||
|
thus, do it recursively....
to eliminate redundant calculation
|
||||
|
|
|
This sounds like the second Stars and Bars theorem.
(I've swapped n and k from the description in Wikipedia to match your question.) So, in the example you gave with n=3 and k=2, the answer is (2 + 3 - 1 3) = (4 3) = 4! / ((4 - 3)! × 3!) = 4. Therefore, if you pre-cache the factorial values you should be able to do the calculation quickly for any of your values of k and n. |
|||
|
|
|
It is more like a math problem.
The first partition x1 has 3 Os, the second partition x2 has 1 O, and x3 has 4 Os, that is, 3 + 1 + 4 = 8. So the count of equations is the number of combinations of |s and Os, or C(k + n - 1, n). |
||||
|
|