Tagged Questions
The combinations tag has no wiki summary.
55
votes
25answers
51k views
Algorithm to return all combinations of k elements from n
I want to write a function that takes an array of letters as an argument and a number of those letters to select.
Say you provide an array of 8 letters and want to select 3 letters from that. Then ...
31
votes
7answers
559 views
Find all combinations of 3x3 holepunch
I was at a carnival where at each location they mark your program with a special hole punch. The hole punch is a grid of 3x3 spaces. In each space, there's either a pin that punctures your paper or ...
16
votes
5answers
304 views
A challenging algorithm problem
In my workplace I have stumbled upon the following problem that I am asked to solve. A solution is preferred although not absolutely required.
There is a database with a set of stories, and each ...
13
votes
8answers
454 views
Minimize the sum of errors of representative integers
Given n integers between [0,10000] as D1,D2...,Dn, where there may be duplicates, and n can be huge:
I want to find k distinct representative integers (for example k=5) between [0,10000] as ...
13
votes
1answer
279 views
What's the Clojure equivalent of inject:into: in Smalltalk?
I'm trying to learn Clojure but my synapses seem to be hard-wired to Smalltalk.
What's the equivalent of this function?
[:n :k | (1 to: k) inject: 1 into: [:c :i | c * (n - k + i / i)]]
this is ...
11
votes
4answers
3k views
Statistics: combinations in Python
I need to compute combinatorials (nCr) in Python but cannot find the function to do that in 'math', 'numyp' or 'stat' libraries. Something like a function of the type:
comb = ...
11
votes
6answers
1k views
Algorithm to select a single, random combination of values?
Say I have y distinct values and I want to select x of them at random. What's an efficient algorithm for doing this? I could just call rand() x times, but the performance would be poor if x, y were ...
10
votes
3answers
1k views
Combination of two arrays in Ruby
What is the Ruby way to achieve following?
a = [1,2]
b = [3,4]
I want an array:
=> [f(1,3) ,f(1,4) , f(2,3) ,f(2,4)]
9
votes
1answer
315 views
Combinatorial Optimization - Variation on Knapsack
Here is a real-world combinatorial optimization problem.
We are given a large set of value propositions for a certain product. The value propositions are of different types but each type is ...
9
votes
5answers
641 views
Algorithm to find the simplest combination of integers that has not yet been used
I am looking for an algorithm for finding the simplest combination of integers from 0 to 5 (that is the one that consists of the fewest number of integers) that has not yet been used (the used ...
9
votes
10answers
1k views
Speed dating algorithm
I work in a consulting organization and am most of the time at customer locations. Because of that I rarely meet my colleagues. To get to know each other better we are going to arrange a dinner party. ...
9
votes
3answers
3k views
Combination of List<List<int>>
I've a List of this type List> that contains this
List<int> A = new List<int> {1, 2, 3, 4, 5};
List<int> B = new List<int> {0, 1};
List<int> C = new List<int> {6};
...
8
votes
5answers
759 views
Programming puzzle question. Can anyone out there help me? [closed]
You are given a set of blocks to build a panel using 3”×1” and 4.5”×1" blocks.
For structural integrity, the spaces between the blocks must not line up in adjacent rows.
There are 2 ways in which ...
8
votes
4answers
313 views
Find set of numbers in one collection that adds up to a number in another
For a game I'm making I have a situation where I have a list of numbers – say [7, 4, 9, 1, 15, 2] (named A for this) – and another list of numbers – say [11, 18, 14, 8, 3] (named B) ...
8
votes
4answers
467 views
Path.Combine and the dot notation
I'm looking for something akin to Path.Combine method that will help me correctly combine absolute and relative paths. For example, I want
Path.Combine(@"c:\alpha\beta", @"..\gamma");
to yield ...
7
votes
3answers
625 views
What's the most efficient way of generating all possible combinations of skyrim (PC Game) potions?
So each ingredient has 4 effects
http://www.uesp.net/wiki/Skyrim:Ingredients
If I combine two ingredients. The potions will have the bonus effects of where the two sets intersect. I can't use the ...
7
votes
4answers
636 views
A logical question
I'm working on a research problem out of curiosity and I don't know how to program the logic that I've in mind. Let me explain it to you :
I've 4 vectors say for example,
v1 = 1 1 1 1
v2 = 2 2 2 2
...
7
votes
6answers
351 views
Most efficient way of randomly choosing a set of distinct integers
I'm looking for the most efficient algorithm to randomly choose a set of n distinct integers, where all the integers are in some range [0..maxValue].
Constraints:
maxValue is larger than n, and ...
7
votes
6answers
314 views
Compute rank of a combination?
I want to pre-compute some values for each combination in a set of combinations. For example, when choosing 3 numbers from 0 to 12, I'll compute some value for each one:
>>> for n in ...
7
votes
1answer
460 views
What are the Ruby equivalent of Python itertools, esp. combinations/permutations/groupby?
Python's itertools module provides a lots of goodies with respect to processing an iterable/iterator by use of generators. For example,
permutations(range(3)) --> 012 021 102 120 201 210
...
7
votes
2answers
156 views
Retrieving MySQL records based on a variable set of points of comparison
Let's say I have a MySQL table, people. Each record comprises a variety of properties, among these favourite_colour, country, and age_group.
What I would like to do is retrieve records from this ...
7
votes
3answers
2k views
All combinations of a list of lists
I'm basically looking for a python version of Combination of List<List<int>>
Given a list of lists, I need a new list that gives all the possible combinations of items between the lists.
...
7
votes
6answers
12k views
Python code to pick out all possible combinations from a list?
I have a list with 15 numbers in, and I need to write some code that produces all 32,768 combinations of those numbers.
I've found some code (by googling) that apparently does what I'm looking for, ...
6
votes
1answer
233 views
Venn diagram from list of clusters and co-occuring factors
I've got an input file with a list of ~50000 clusters and presence of a number of factors in each of them (~10 million entries in total), see a smaller example below:
set.seed(1)
x = ...
6
votes
3answers
190 views
Bitwise shift to generate all possible permutations in C [closed]
Possible Duplicate:
Creating multiple numbers with certain number of bits set
I'm attempting to write some code which will put each possible combination of numbers in an array by shifting ...
6
votes
3answers
230 views
Is it possible to get k-th element of m-character-length combination in O(1)?
Do you know any way to get k-th element of m-element combination in O(1)? Expected solution should work for any size of input data and any m value.
Let me explain this problem by example (python ...
6
votes
3answers
766 views
Combinations with repetition
I'm using Mathematica 7 and with a combinatorica package function I can get all combinations of a certain number from a list of elements where the order doesn't matter and there is no repetition.e.g:
...
6
votes
6answers
950 views
How to count possible combination for coin problem
I am trying to implement a coin problem, Problem specification is like this
Create a function to count all possible combination of coins which can be used for given amount.
All possible combinations ...
6
votes
3answers
2k views
Generating combinations in Matlab
I use combnk to generate a list of combinations. How can I generate a subset of combinations, which always includes particular values. For example, for combnk(1:10, 2) I only need combinations which ...
6
votes
3answers
171 views
All valid combinations of points, in the most (speed) effective way
I know there are quite some questions out there on generating combinations of elements, but I think this one has a certain twist to be worth a new question:
For a pet proejct of mine I've to ...
6
votes
5answers
578 views
Algorithm to find optimal combination of products and shops to minimise cost
Hello there Stackoverflow people,
I run a site that finds its users the cheapest place to buy books. This is easy for a single book, but for multiple books it can sometimes be cheaper to purchase one ...
6
votes
4answers
446 views
remove numbers from a list without changing total sum
I have a list of numbers (example: [-1, 1, -4, 5]) and I have to remove numbers from the list without changing the total sum of the list. I want to remove the numbers with biggest absolute value ...
6
votes
5answers
3k views
Combination Generator in Linq
Is it possible to create some Linq that generates a List containing all possible combinations of a series of numbers??
If you enter "21" it would generate a list with the elements:
list[0] = "21"
...
5
votes
1answer
128 views
Using LINQ to iterate combinations [closed]
Possible Duplicate:
Generating all Possible Combinations
Is there a good LINQ way to do a cartesian product?
How to generate combination of N elements with limited supply of 2 each without ...
5
votes
4answers
96 views
Python: all possible combinations of “dynamic” list
I really can't find this out. I tried to use itertools, tried all kind of looping, but still i can't achieve what I want. Here is what i need:
I have list such as:
list = [("car", 2), ("plane", 3), ...
5
votes
3answers
159 views
Generating combinations of substrings from a string
I'm trying to is generate all possible syllable combinations for a given word. The process for identifying what's a syllable isn't relevant here, but it's the generating of all combinations that's ...
5
votes
1answer
114 views
Find distinct qualified combinations of A & B, with many-to-many A:B exclusions
With all the "distinct combination" and "Cartesian product" questions on SO, I'm sure there's a name and canonical solution for this one, but I'm not turning it up.
Update... Here's a potentially ...
5
votes
1answer
123 views
Possible combinations of a list
I have an arraylist of objects that I want to create all possible combinations (according to a simple set of rules). Each object that is stored in the list holds a squadNumber and a string. Here is ...
5
votes
3answers
90 views
How Can I Get Adjacent Pairs of Combination Using R?
Given a list of characters, such as:
L<-as.list("a", "b", "c", "d")
Note that, the length of L is not fixed.
How can I get Adjacent Pairs of combination, such as:
[,1] [,2]
[1,] "a" "b"
...
5
votes
1answer
227 views
Algorithm to create unique random concatenation of items
I'm thinking about an algorithm that will create X most unique concatenations of Y parts, where each part can be one of several items. For example 3 parts:
part #1: 0,1,2
part #2: a,b,c
part #3: ...
5
votes
3answers
102 views
Ordering Combinations for Maximum Effectiveness
So recently I was given a problem, which I have been mulling over and am still unable to solve; I was wondering if anyone here could point me in the right direction by providing me with the psuedo ...
5
votes
4answers
166 views
What is the best way of accessing all combinations
As a job of a tester, one of my concerns is to always ensure complete test coverage. This can get hard since sometimes the number of possible combinations are really a lot. Lets take an example for ...
5
votes
3answers
5k views
Finding all possible combinations of numbers to reach a given sum
How would you go about testing all possible combinations of additions from a given set of numbers so they add up to a given final number?
Example:
Set of numbers to add: {1,5,22,15,0,...}
Desired ...
5
votes
2answers
191 views
finding all series within an array
How do I find number of all the series (combinations of an array that have at least 3 consecutive values, like [7,8,9]) and have the longest number of values?
from [3,4,1,2,2] it would be 2 - ...
5
votes
3answers
633 views
Combinations and Permutations in F#
I've recently written the following combinations and permutations functions for an F# project, but I'm quite aware they're far from optimised.
/// Rotates a list by one place forward.
let rotate lst ...
5
votes
3answers
221 views
grouping objects to achieve a similar mean property for all groups
I have a collection of objects, each of which has a numerical 'weight'. I would like to create groups of these objects such that each group has approximately the same arithmetic mean of object ...
5
votes
6answers
322 views
c# string split and combine
i have a string that conatin 5 numbers like
'1,4,14,32,47'
i want to make from this string 5 strings of 4 number in each one
like :
'1,4,14,32'
'1,4,14,47'
'1,4,32,47'
'1,14,32,47'
...
5
votes
8answers
551 views
Need a SQL statement focus on combination of tables but entries always with unique ID
I need SQL code to solve the tables combination problem, described on below:
Table old data: table old
name version status lastupdate ID
A 0.1 on 6/8/2010 ...
5
votes
7answers
3k views
counting combinations and permutations efficiently
I have some code to count permutations and combinations, and I'm trying to make it work better for large numbers.
I've found a better algorithm for permutations that avoids large intermediate ...
5
votes
8answers
919 views
Howto create combinations of several vectors without hardcoding loops in C++?
I have several data that looks like this:
Vector1_elements = T,C,A
Vector2_elements = C,G,A
Vector3_elements = C,G,T
..... up to ...
VectorK_elements = ...
#Note also that the member of each vector ...