Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As mentioned in this odd video here at about 50 seconds, how many different combinations of the folded snake are there for a given snake of X segments in length.

Here is how it works: A snake consists of segments each segment can rotate 90 degrees (picture the game snake), or go straight, the challenge is not colliding with other parts of the snake.

Example:

Input: 10
Output: 300

The input being the length of the snake in segments. The output being the total number of unique combinations.

Extra points would be showing the directions of each segment from the head down like: LSRRSSLLL.


Update: not sure how to designate between the head and tail, I suppose when denoting LRLRLL... start with the head, but I'm not sure it actually matters. No segments can overlap nor can ends, so RRRL would be invalid. Rotating the entire snake 90 degrees is not a new configuration either.

Additionally, remember segments don't need to be rotated they can go straight, use S for straight.

share|improve this question
1  
It's a little hard to explain, I think you need to watch the video to get the idea. How do I make this a community Wiki? – Joseph Silvashy Mar 12 '11 at 6:36
Can you clafity the rules more? For example: Are the head and the tail distinguished? Do you always have to bend it to L or R but not have it straight? If you filp it, will that count as the same? – sawa Mar 12 '11 at 6:45
if a snake has 10 segments, how can it have 10 bends (in your slither)? Surely it has 9? Is the head considered to occupy its cell? Do you consider rotations and translations of the head to be the same slither or a different one? can two corners occupy the same physical space? e.g. RRRL – Alex Brown Mar 12 '11 at 6:48
Alex you are correct, obviously I can't even count... haha. – Joseph Silvashy Mar 12 '11 at 7:04
I think you want permutations of L and R, not combinations. I don't get what you mean by 'unique' combinations. I also don't understand you final sentence 'Extra points...' – sawa Mar 12 '11 at 7:09
show 3 more comments

closed as off topic by Tim Post Mar 12 '11 at 8:42

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 1 down vote accepted

Okay, here is my entry. It's 48 lines of Python 2.6 including whitespace and comments, 41 of code. I'm sure there's a ton of room for improvement. I interpreted several points:

  1. Length means number of segments. The number of turns (joints) is one less than the number of segments. So a length 1 snake has a head, a single segment, and a tail.
  2. I didn't bother to have my program take input, as that would require some kind of command line interface. I just hard-coded it to print counts for lengths n in the interval [1, 13].
  3. I don't know what you mean by rotate, so I ignored that.
  4. I could easily print snakes, but didn't, since there are very many...

Now here's my basic strategy. It is the completely naive approach.

  1. Generate all snakes of length n. There are 3n-1.
  2. Determine if each of those is valid.
  3. Now, how to handle symmetry?
    1. All snakes have a reflection, where L is swapped with R and R with L.
    2. All snakes have a reverse.
    3. If a snake is valid, its reflection is valid, its reverse is valid, and its reflection's reverse is valid.
    4. Palindromic snakes are their own reverses.
    5. The straight snake is its own reflection, and it is palindromic.

Without further ado, snake.py:

#!/usr/bin/env python2.6

def to_points(snake):
    turns = {"L": 1, "S": 0, "R": 3}
    moves = [(1, 0), (0, 1), (-1, 0), (0, -1)]
    dir = 0 # 0: +x, 1: +y, 2: -x, 3: -y
    x, y = 0, 0
    points = [(x, y)]
    for turn in snake:
        x, y = [sum(o) for o in zip((x, y), moves[dir])]
        points.append((x, y))
        dir = (dir + turns[turn]) % 4
    x, y = [sum(o) for o in zip((x, y), moves[dir])]
    points.append((x, y))
    return points

def is_valid(snake):
    points = to_points(snake)
    return len(points) == len(set(points))

def generator(n_turns):
    turns = {0: "L", 1: "S", 2: "R"}
    n_snakes = 3**n_turns
    for i in xrange(n_snakes):
        snake = [None] * n_turns
        for j in xrange(n_turns):
            snake[j] = i % 3
            i = i // 3
        yield "".join([turns[turn] for turn in snake])

def is_palindrome(snake):
    for i in xrange(len(snake)//2):
        if snake[i] != snake[len(snake) - 1 - i]:
            return False
    return True

def print_valid_counts(n_turns):
    count = 0
    palindrome_count = 0
    for snake in (s for s in generator(n_turns) if is_valid(s)):
        count += 1
        if is_palindrome(snake):
            palindrome_count += 1
    print "Length = %d,\tValid = %d,\tValid and Unique = %d" % \
        (n_turns + 1, count, (count - 1)/4 + 1 + palindrome_count/2)

for n in range(13):
    print_valid_counts(n)

And the output:

$ time ./snake.py
Length = 1, Valid = 1,  Valid and Unique = 1
Length = 2, Valid = 3,  Valid and Unique = 2
Length = 3, Valid = 9,  Valid and Unique = 4
Length = 4, Valid = 25, Valid and Unique = 10
Length = 5, Valid = 71, Valid and Unique = 21
Length = 6, Valid = 195,    Valid and Unique = 58
Length = 7, Valid = 543,    Valid and Unique = 145
Length = 8, Valid = 1479,   Valid and Unique = 393
Length = 9, Valid = 4067,   Valid and Unique = 1041
Length = 10,    Valid = 11025,  Valid and Unique = 2821
Length = 11,    Valid = 30073,  Valid and Unique = 7584
Length = 12,    Valid = 81233,  Valid and Unique = 20470
Length = 13,    Valid = 220375, Valid and Unique = 55263

real    0m22.105s
user    0m22.040s
sys 0m0.000s
$
share|improve this answer
I wish they didn't close this, it seems they'll be moving it over to codegolf.stackexchange.com which sucks. – Joseph Silvashy Mar 12 '11 at 21:48

Not the answer you're looking for? Browse other questions tagged or ask your own question.