Combinatorics and permutations? Help?

D

David Palm

Hi,
I have a problem involving combinatorics and permutations and my brain hurts.

The problem: I have a hash of products in input. I then build an array of equivalent products for each input product. I end up with an array such as this:
{
:input_prod_1 => [:p1_1, :p1_2, ... , p1_x],
:input_prod_2 => [:p2_1, :p2_1, ..., p2_y],
...
:input_prod_m => [:pm_1, :pm_1, ..., pm_z]
}

I need all the unique combinations of each product from the first group with each of the second. For example:
given: [ [:p1, :p2], [:p3, p4] ]
I need to obtain: [ [:p1, :p3], [:p1, :p4], [:p2, :p3], [:p2, :p4] ]

Given: [ [:p1], [:p2, :p3, :p4] ]
I need: [ [:p1, :p2], [:p1, :p3], [:p1, :p4] ]

The number of input products is in the order of tens (max); the same goes for the number of equivalent products. This means the total number of partitions is pretty large and I need to weed out the equivalent ones soon/fast enough to reduce the total number.

I've been making attempts with the permutation gem all morning; looks like it's doing the "right thing", but frankly my maths skills are lacking and I can't really figure out how to use it (should I?).

Also: order is not important for the result arrays.

This is easy, right? :-/
 
W

William James

I need all the unique combinations of each product from the first group with each of the second. For example:
given: [ [:p1, :p2], [:p3, p4] ]
I need to obtain: [ [:p1, :p3], [:p1, :p4], [:p2, :p3], [:p2, :p4] ]

Given: [ [:p1], [:p2, :p3, :p4] ]
I need: [ [:p1, :p2], [:p1, :p3], [:p1, :p4] ]

p [[1,2],[3,4]].inject([[]]){|old,lst|
lst.inject([]){|new,e| new + old.map{|c| c.dup << e}}}
 
S

Sergio Bayona

I have a similar challenge:

given: [{"a" => [1, 2]}, {"b" => [3, 4]}]

I need: [{"a" => 1, "b" => 3}, {"a" => 1, "b" => 4}, {"a" => 2, "b" =>
3}, {"a" => 2, "b" => 4}]

Any ideas?

Thanks.
S
 
J

Jacob Mitchell

[Note: parts of this message were removed to make it a legal post.]
given: [{"a" => [1, 2]}, {"b" => [3, 4]}]

I need: [{"a" => 1, "b" => 3}, {"a" => 1, "b" => 4}, {"a" => 2, "b" =>
3}, {"a" => 2, "b" => 4}]

Any ideas?

Yup, the following method does nearly the same thing, except it takes
arrays. You could either use this method for inspiration, or convert your
desired input into my array of arrays input format and then convert the
output back to your desired format. Hope that helps.

def selections(arrays, results=[Array.new])
return results if arrays.empty?

new_selection_choices = arrays.shift
results_with_new_selections = []

results.each do |prev_selection_set|
new_selection_choices.each do |selection|
results_with_new_selections <<
prev_selection_set.clone.push(selection)
end
end

return selections(arrays, results_with_new_selections)
end

selections([[1, 2], [3, 4]]) #=> [[1, 3], [1, 4], [2, 3], [2, 4]]
 
J

Josh Cheek

[Note: parts of this message were removed to make it a legal post.]

I have a similar challenge:

given: [{"a" => [1, 2]}, {"b" => [3, 4]}]

I need: [{"a" => 1, "b" => 3}, {"a" => 1, "b" => 4}, {"a" => 2, "b" =>
3}, {"a" => 2, "b" => 4}]

Any ideas?

Thanks.
S
Here is a solution I have come up with (http://gist.github.com/297937). I
don't know how you want all edge cases to be handled, I made my best
guesses, you can see them in the tests.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,053
Latest member
BrodieSola

Latest Threads

Top