Tagged Questions
Deals with combinations of entities belonging to a finite set in accordance with certain constraints.
45
votes
9answers
28k views
How to generate all permutations of a list in Python
How do you generate all the permutations of a list in Python, independently of the type of elements in that list.
For example:
permutations ([])
[]
permutations ([1,])
[1]
permutations ([1,2])
...
36
votes
6answers
7k views
Generating permutations lazily
I'm looking for an algorithm to generate permutations of a set in such a way that I could make a lazy list of them in Clojure. i.e. I'd like to iterate over a list of permutations where each ...
35
votes
23answers
3k views
Code-golf: generate pascal's triangle
Generate a list of lists (or print, I don't mind) a Pascal's Triangle of size N with the least lines of code possible!
Here goes my attempt (118 characters in python 2.6 using a trick):
...
26
votes
4answers
1k views
Google Interview: Arrangement of Blocks
You are given N blocks of height 1…N. In how many ways can you arrange these blocks in a row such that when viewed from left you see only L blocks (rest are hidden by taller blocks) and when seen from ...
24
votes
9answers
1k views
Generating all 5 card poker hands
This problem sounds simple at first glance, but turns out to be a lot more complicated than it seems. It's got me stumped for the moment.
There are 52c5 = 2,598,960 ways to choose 5 cards from a 52 ...
22
votes
8answers
4k views
Fast permutation -> number -> permutation mapping algorithms
I have n elements. For the sake of an example, let's say, 7 elements, 1234567. I know there are 7! = 5040 permutations possible of these 7 elements.
I want a fast algorithm comprising two ...
21
votes
6answers
719 views
Travelling salesman with repeat nodes & dynamic weights
Given a list of cities and the cost to fly between each city, I am trying to find the cheapest itinerary that visits all of these cities. I am currently using a MATLAB solution to find the cheapest ...
18
votes
8answers
440 views
Complex Combinatorial Algorithms
So Wendy's advertises their sandwich as having 256 combinations - meaning there are 8 ingredients you can either have to not have (although I wonder why they would count the combination where you ...
17
votes
7answers
312 views
How to find Best Price for a Deck of Collectible Cards?
Or The Traveling Salesman plays Magic!
I think this is a rather interesting algorithmic challenge. Curious if anyone has any good suggestions for solving it, or if it is already solvable in a known ...
15
votes
8answers
3k views
Generating all Possible Combinations
Given 2 arrays Array1 = {a,b,c...n} and Array2 = {10,20,15....x} ..
how can i generate all possible combination as Strings a(i) b(j) c(k) n(p) where
1 <= i <= 10, 1 <= j <= 20 , 1 <= ...
14
votes
2answers
518 views
Project Euler #163 understanding
I spent quite a long time searching for a solution to this problem. I drew tons of cross-hatched triangles, counted the triangles in simple cases, and searched for some sort of pattern. Unfortunately, ...
14
votes
14answers
8k views
How can I print out all possible letter combinations a given phone number can represent?
I just tried for my first programming interview and one of the questions was to write a program that given a 7 digit telephone number, could print all possible combinations of letters that each number ...
13
votes
5answers
609 views
Creating combinations that have no more one intersecting element
I am looking to create a special type of combination in which no two sets have more than one intersecting element. Let me explain with an example:
Let us say we have 9 letter set that contains A, B, ...
12
votes
2answers
104 views
Maximizing number of combinations of sum of integers
This is a homework question so I'd like a hint, not a complete answer. But I'm completly lost currently.
Basically, given a sorted list of positive non-zero numbers, say {1, 4, 5}, change a single ...
12
votes
3answers
641 views
Langford sequence implementation Haskell or C
In combinatorial mathematics, a Langford pairing, also called a Langford sequence, is a permutation of the sequence of 2n numbers 1, 1, 2, 2, ..., n,n in which the two ones are one unit apart, the two ...
11
votes
1answer
116 views
How are the memory and speed of a program related in a web browser like chrome?
Lately, I've been playing around with Ramsey's theorem for R(5,5). You can see some examples of previous attempts here: http://zacharymaril.com/thoughts/constructionGraph.html
Essence: find all the ...
11
votes
3answers
454 views
Permute all unique enumerations of a vector in R
I'm trying to find a function that will permute all the unique permutations of a vector, while not counting juxtapositions within subsets of the same element type. For example:
dat <- ...
11
votes
2answers
329 views
Enumerating combinations in a distributed manner
I have a problem where I must analyse 500C5 combinations (255244687600) of something. Distributing it over a 10 node cluster where each cluster processes roughly 10^6 combinations per second means the ...
11
votes
9answers
1k views
Cartesian product
I wish to produce the cartesian product of 2 lists in Haskell, but I cannot work out how to do it. The cartesian product gives all combinations of the list elements:
xs = [1,2,3]
ys = [4,5,6]
...
10
votes
2answers
245 views
Counting subsets with given sizes of a set
Given a set C with n elements (duplicates allowed) and a partition P of n
P = {i1, i2, ... / i1+i2+... = n}
how many different decompositions of C in subsets of size i1, i2, ... are there ?
Example : ...
10
votes
5answers
7k views
List all possible combinations of k integers between 1…n (n choose k)
Out of no particular reason I decided to look for an algorithm that produces all possible choices of k integers between 1...n, where the order amongst the k integer doesn't matter (the n choose k ...
9
votes
4answers
442 views
Python Combinatorics, part 2
This is a follow-up question to Combinatorics in Python
I have a tree or directed acyclic graph if you will with a structure as:
Where r are root nodes, p are parent nodes, c are child nodes and b ...
9
votes
5answers
643 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
3answers
516 views
Algorithm for finding symmetries of a tree
I have n sectors, enumerated 0 to n-1 counterclockwise. The boundaries between these sectors are infinite branches (n of them).
The sectors live in the complex plane, and for n even,
sector 0 and n/2 ...
9
votes
6answers
253 views
Optimizing cartesian requests with affine costs
I have a cost optimization request that I don't know how if there is literature on. It is a bit hard to explain, so I apologize in advance for the length of the question.
There is a server I am ...
9
votes
8answers
1k views
How to produce the i-th combination/permutation without iterating
Given any iterable, for example: "ABCDEF"
Treating it almost like a numeral system as such:
A
B
C
D
E
F
AA
AB
AC
AD
AE
AF
BA
BB
BC
....
FF
AAA
AAB
....
How would I go about finding the ith member ...
8
votes
2answers
218 views
Algorithm for Least Edge Intersections
(Before anyone asks, it's not homework.)
Say you have 2 Arrays y0 and y1 where
y0 = [1,2,3,4,5,6] and
y1 = [2,1,6,3,4,5]
Notice y0[0] = y1[1] = 1, it essentially means y0[0] is connected to y1[1]. ...
8
votes
8answers
3k views
Combinatoric 'N choose R' in java math?
Is there a built in method in a java library that can compute 'N choose R' for any N, R?
8
votes
7answers
850 views
Solve “Travelling salesman problem” in linear time
How do I tell a "project lead" to f--k off and learn some computer science when he tells me to do something that amounts to solving a generic Travelling salesman problem in linear time.
One of his ...
7
votes
3answers
136 views
How to find multiplicative partitions of any integer?
I'm looking for an efficient algorithm for computing the multiplicative partitions for any given integer. For example, the number of such partitions for 12 is 4, which are
12 = 12 x 1 = 4 x 3 = 2 x 2 ...
7
votes
1answer
164 views
Python - Iteration over nested lists
I'm stuck on a small but tricky problem since yesterday.
What I have is a (possibly infinitely) nested list like this:
[1,[2,[3,4]]]
or [[1,2],[3,4]] and so on.
On each level the lists consist of ...
7
votes
2answers
321 views
Efficient item binning algorithm (itertools/numpy)
I think this is a common combinatorics problem, but I can't seem to find a name for it or any material about it. I am doing this in Python and numpy, but if there is a fast matrix method for this, I ...
7
votes
2answers
677 views
Generate all combinations in SQL
I need to generate all combinations of size @k in a given set of size @n. Can someone please review the following SQL and determine first if the following logic is returning the expected results, 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
4answers
468 views
Minimal-change algorithm which maximises 'swapping'
This is a question on combinatorics from a non-mathematician, so please try to bear with me!
Given an array of n distinct characters, I want to generate subsets of k characters in a minimal-change ...
7
votes
4answers
307 views
Help me finish this Python 3.x self-challenge
This is not homework.
I saw this article praising Linq library and how great it is for doing combinatorics stuff, and I thought to myself: Python can do it in a more readable fashion.
After half ...
7
votes
4answers
1k views
How can I prove the “Six Degrees of Separation” concept programmatically?
I have a database of 20 million users and connections between those people. How can I prove the concept of "Six degrees of separation" concept in the most efficient way in programming?
link to the ...
6
votes
4answers
180 views
Old Top Coder riddle: Making a number by inserting +
I am thinking about this topcoder problem.
Given a string of digits, find the minimum number of additions required for the string to equal some target number. Each addition is the equivalent of ...
6
votes
2answers
178 views
Distribution of balls into 'bins with given capacities' using Dynamic Programming
I was wondering how to solve such a problem using DP.
Given n balls and m bins, each bin having max. capacity c1, c2,...cm. What is the total number of ways of distributing these n balls into these m ...
6
votes
2answers
216 views
Algorithm to get probability of reaching a goal
Okay, I'm gonna be as detailed as possible here.
Imagine the user goes through a set of 'options' he can choose. Every time he chooses, he get, say, 4 different options. There are many more options ...
6
votes
2answers
163 views
Python combinatorials w/o repetition - Pyncomb?
I'm trying to do some combinatorial stuff with data in Python.
I looked the question How to generate all permutations of a list in Python, but think that doesn't fit my needs..
I have data of this ...
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
1answer
148 views
Generating natural schedule for a sports league
I'm looking for an algorithm to generate a schedule for a set of
teams. For example, imagine a sports season in which each team plays
each other, one time as home team and the other as a visitor team ...
6
votes
3answers
3k views
Matlab - Generate all possible combinations of the elements of some vectors
I would like to generate all the possible combinations of the elements of a given number of vectors.
For example for [1 2], [1 2] and [4 5] I want to generate the elements:
[1 1 4; 1 1 5; 1 2 4; 1 2 ...
6
votes
11answers
618 views
Which language for rapid-prototyping of heuristics in combinatorial optimization?
I have to develop a fast heuristic-like algorithm for a hard combinatorial problem. Therefore I think, it would be the best to learn a more expressive language than C++ first for tackling the problem, ...
6
votes
3answers
849 views
Getting all possible permutations from a list of numbers
I'm looking for an efficient way to achieve this:
you have a list of numbers 1.....n (typically: 1..5 or 1..7 or so - reasonably small, but can vary from case to case)
you need all combinations of ...
6
votes
5answers
179 views
Generate all the ways to intersperse a list of lists, keeping each list in order
Given a list of lists like this
[[1,2,3],[a,b,c,d],[x,y]]
generate all permutations of the flattened list, [1,2,3,a,b,c,d,x,y], such that the elements of each sublist occur in the same order.
For ...
6
votes
4answers
483 views
Permutations with extra restrictions
I have a set of items, for example: {1,1,1,2,2,3,3,3}, and a restricting set of sets, for example {{3},{1,2},{1,2,3},{1,2,3},{1,2,3},{1,2,3},{2,3},{2,3}. I am looking for permutations of items, but ...
6
votes
11answers
1k views
What are some practical uses of generating all permutations of a list, such as ['a', 'b', 'c']?
I was asked by somebody in an interview for web front end job, to write a function that generates all permutations of a string, such as "abc" (or consider it ['a', 'b', 'c']).
so the expected result ...
6
votes
4answers
2k views
Concatenate values of n arrays in php
I have an unknown number of arrays, each containing an unknown number of words. I want to concatenate the values from each list so that all possible variations of the words are stored to a final ...