Tagged Questions
The permutation tag has no wiki summary.
34
votes
4answers
1k views
Code Golf: Countdown Number Game
Challenge
Here is the task, inspired by the well-known British TV game show Countdown. The challenge should be pretty clear even without any knowledge of the game, but feel free to ask for ...
33
votes
14answers
3k views
How to tell if an array is a permutation in O(n)?
Input: A read-only array of N elements containing integer values from 1 to N (some integer values can appear more than once!). And a memory zone of a fixed size (10, 100, 1000 etc - not depending on ...
24
votes
6answers
870 views
Secret Santa - Generating 'valid' permutations
My friends invited me home to play the game of Secret Santa, where we are supposed to draw a lot & play the role of 'Santa' for a friend in the group.
So, we write all our names and pick a name ...
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 ...
24
votes
14answers
3k views
Are there any better methods to do permutation of string?
void permute(string elems, int mid, int end)
{
static int count;
if (mid == end) {
cout << ++count << " : " << elems << endl;
return ;
}
else {
...
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
4answers
808 views
Why does Python's itertools.permutations contain duplicates? (When the original list has duplicates)
It is universally agreed that a list of n distinct symbols has n! permutations. However, when the symbols are not distinct, the most common convention, in mathematics and elsewhere, seems to be to ...
17
votes
11answers
756 views
Randomly permute N first elements of a singly linked list
I have to permute N first elements of a singly linked list of length n, randomly. Each element is defined as:
typedef struct E_s
{
struct E_s *next;
}E_t;
I have a root element and I can traverse ...
13
votes
1answer
115 views
algorithm to find square chained permutations
A permutation is square chained if the sum of consecutive numbers is always a perfect square. For example,
8 1 15 10 6 3 13 12 4 5 11 14 2 7 9 16
is a squared chain permutation of the numbers 1 to ...
13
votes
5answers
637 views
find a cost optimized path through a grid/matrix in c++
I am stuck with a problem and could not find much help online. I need to find the minimum cost combination of numbers from multiple vectors of numbers. The vector size is same for all vectors.
For ...
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
5answers
2k views
How would you calculate all possible permutations of 0 through N iteratively?
I need to calculate permutations iteratively. The method signature looks like:
int[][] permute(int n)
For n = 3 for example, the return value would be:
[[0,1,2],
[0,2,1],
[1,0,2],
[1,2,0],
...
11
votes
6answers
4k views
Listing all permutations of a string/integer
A common task in programming interviews (not from my experience of interviews though) is to take a string or an integer and list every possible permutation.
Is there an example of how this is done ...
10
votes
2answers
150 views
Fisher Yates variation
The classic Fisher Yates looks something like this:
void shuffle1(std::vector<int>& vec)
{
int n = vec.size();
for (int i = n - 1; i > 0; --i)
{
std::swap(vec[i], ...
10
votes
2answers
1k views
algorithm for python itertools.permutations
Can someone please explain algorithm for itertools.permutations routine in Python standard lib 2.6? I see its code in the documentation but don't undestand why it work?
Thanks
Code is:
def ...
9
votes
2answers
336 views
Contest problem “K-transformed” permutations
I have been banging my head against this problem for days, and searched exhaustively online for any hints on how to solve it. If you enjoy mathematically oriented programming problems, please take a ...
9
votes
8answers
899 views
Good hash function for permutations?
I have got numbers in a specific range (usually from 0 to about 1000). An algorithm selects some numbers from this range (about 3 to 10 numbers). This selection is done quite often, and I need to ...
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
7answers
8k views
How can I generate all permutations of an array in Perl?
What's the best (elegant, simple, efficient) way to generate all n! permutations of an array in perl?
For example, if I have an array @arr = (0, 1, 2), I want to output all permutations:
0 1 2
0 2 1
...
8
votes
1answer
198 views
What's the best reserved seat sorting algorithm?
I'm trying to find the best algorithm for the following sorting problem.
There are N = K × M seats in an auditorium with one aisle, K rows, and M seats per aisle. The assumption is made that K is a ...
8
votes
2answers
619 views
Algorithm for permutations of operators and operands
I came across this question on an interview website -
We are given 4 numbers say n1, n2, n3, n4. We can place them in any
order and we can use the mathematical operators +, -, *, / in between them
...
7
votes
6answers
268 views
How many common English words of 4 letters or more can you make from the letters of a given word (each letter can only be used once)
On the back of a block calendar I found the following riddle:
How many common English words of 4 letters or more can you make from the letters
of the word 'textbook' (each letter can only be ...
7
votes
4answers
458 views
Is there an algorithm to generate all unique circular permutations of a multiset?
I encountered this problem when doing some enthusiastic programming. The problem can be expressed as follows:
For a multiset A, let P(A) denote the
set of all possible permutations of A.
P(A) ...
7
votes
7answers
589 views
random permutation
I would like to genrate a random permutation as fast as possible.
The problem: The knuth shuffle which is O(n) involves generating n random numbers.
Since generating random numbers is quite expensive.
...
7
votes
1answer
461 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
8answers
1k views
How to check if permutations have equal parity?
I am looking for a way to check if 2 permutations (represented by lists) are of the same parity. Note that I am not interested if they are even or odd parity, just the equality.
I am new to Python ...
7
votes
2answers
1k views
Permutation of a vector
suppose I have a vector:
0 1 2 3 4 5
[45,89,22,31,23,76]
And a permutation of its indices:
[5,3,2,1,0,4]
Is there an efficient way to resort it according to the permutation thus obtaining:
...
6
votes
6answers
117 views
Ensuring only a single formula could ever apply to 4 random elements
I have a list of formulae for combining elements:
A + B + C = X
D + E + F = Y
G + H + I = Z
I want to ensure that given any random 4 elements, there will never be more than 1 applicable formula. ...
6
votes
4answers
109 views
Permutation with Repetition: Avoiding Overflow
Background:
Given n balls such that:
'a' balls are of colour GREEN
'b' balls are of colour BLUE
'c' balls are of colour RED
...
(of course a + b + c + ... = n)
The number of permutations in which ...
6
votes
5answers
210 views
Haskell : invert a permutation in linear time, using only lists
I want to define a function
invert :: [Int] -> [Int]
that assumes that its input is a permutation of [0..(n-1)], and returns its inverse. Can one define it using only lists and tuples (without ...
6
votes
4answers
281 views
Algorithm for “pick the number up game”
I'm struggling to get some solution, but I have no idea for that.
RobotA and RobotB who choose a permutation of the N numbers to begin with. RobotA picks first, and they pick alternately. Each turn, ...
6
votes
2answers
205 views
Create expression trees from given sets of numbers and operations and find those that evaluate to a target number in Mathematica 8 or above
Given a set of numbers and a set of binary operations,
what is the fastest way to create random expression trees or exhaustively check every possible combination in Mathematica?
What I am trying to ...
6
votes
4answers
536 views
Binary String permutations
I came across a problem on http://www.interviewstreet.com .
Bob has received a binary string of length N transmitted by Alice. He knows that due to errors in transmission, up to K bits might have ...
6
votes
3answers
136 views
Finding the least-used permutation
I need to distribute a set of data evenly over time based on historical data such that each digit appears an equal (or close to equal) number of times in each position over time. The problem is, given ...
6
votes
3answers
192 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
4answers
318 views
Bitwise permutation of multiple 64bit values in parallel / combined
This question is NOT about "How do i bitwise permutation" We now how to do that, what we are looking for is a faster way with less cpu instructions, inspired by the bitslice implementation of sboxes ...
6
votes
4answers
298 views
permutations with unique values
itertools.permutations generates where its elements are treated as unique based on their position, not on their value. So basically I want to avoid duplicates like this:
>>> ...
6
votes
2answers
167 views
Help me finish the last part of my app? It solves any Countdown Numbers game on Channel 4 by brute forcing every possibly equation
For those not familiar with the game. You're given 8 numbers and you have to reach the target by using +, -, / and *.
So if the target is 254 and your game numbers are 2, 50, 5, 2, 1, you would ...
6
votes
4answers
541 views
Loop through different sets of unique permutations
I'm having a hard time getting started to layout code for this problem.
I have a fixed amount of random numbers, in this case 8 numbers.
R[] = { 1, 2, 3, 4, 5, 6, 7, 8 };
That are going to be placed ...
6
votes
1answer
478 views
Generate permutations of list with repeated elements
In Python, it is quite simple to produce all permutations of a list using the itertools module. I have a situation where the list I'm using only has two characters (i.e. '1122'). I want to generate ...
6
votes
3answers
573 views
C# ordered combinations algorithm
I'm trying to develop a c# application that will generate a list of all possible permutations, within a limit, and cost. For example, I have a list of 80 jobs. Each job has a value (1-5) (typically ...
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
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
2answers
477 views
Algorithm to permute elements in Array
Consider the following scenario.
I have an array of numbers:
[ 1,2,3,4 ]
If this array was joined i would have the number 1234.
I want to swap the numbers around to achieve the clossest higher ...
6
votes
4answers
1k views
Finding a set of permutations, with a constraint
I have a set of N^2 numbers and N bins. Each bin is supposed to have N numbers from the set assigned to it. The problem I am facing is finding a set of distributions that map the numbers to the bins, ...
6
votes
7answers
2k views
Calculating permutations in F#
Inspired by this question and answer, how do I create a generic permutations algorithm in F#? Google doesn't give any useful answers to this.
EDIT: I provide my best answer below, but I suspect that ...
5
votes
1answer
117 views
Efficiently determine “how sorted” a list is, eg. Levenshtein distance
I'm doing some research on ranking algorithms, and would like to, given a sorted list and some permutation of that list, calculate some distance between the two permutations. For the case of the ...
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
1answer
212 views
Recursive permutation function always returns empty list
I'm learning Haskell, and one of my practice functions was a simple recursive permute. I adapted the solution described here and originally got this:
selections [] = []
selections (x:xs) = (x, xs) : ...