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:
- 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.
- 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].
- I don't know what you mean by rotate, so I ignored that.
- 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.
- Generate all snakes of length n. There are 3n-1.
- Determine if each of those is valid.
- Now, how to handle symmetry?
- All snakes have a reflection, where L is swapped with R and R with L.
- All snakes have a reverse.
- If a snake is valid, its reflection is valid, its reverse is valid, and its reflection's reverse is valid.
- Palindromic snakes are their own reverses.
- 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
$