Skip to content

Instantly share code, notes, and snippets.

@christianp
Created May 27, 2016 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christianp/db51ca8e080e8677ebc396a8870efedb to your computer and use it in GitHub Desktop.
Save christianp/db51ca8e080e8677ebc396a8870efedb to your computer and use it in GitHub Desktop.
How many 8-step walks on a grid trace out just a unit square in the lower-right quadrant?
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 36,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"98/65536\n",
"210/65536\n"
]
}
],
"source": [
"def paths(pos,seen,steps,must_end_at_origin = True):\n",
" x,y = pos\n",
" seen |= 2**(2*x+y)\n",
" #print(\"{}at {},{}, seen {}\".format(' '*(4-steps),x,y,bin(seen)[2:]))\n",
" if steps==0:\n",
" #print('{}{}'.format(' '*(4-steps),seen==2**4-1))\n",
" return seen==2**4-1 and (not must_end_at_origin or x==y==0)\n",
" \n",
" vecs = ((1,0),(-1,0),(0,1),(0,-1))\n",
" t = 0\n",
" for dx,dy in vecs:\n",
" nx,ny = x+dx,y+dy\n",
" if nx in (0,1) and ny in (0,1):\n",
" t += paths((nx,ny),seen,steps-1,must_end_at_origin)\n",
" return t\n",
" \n",
"print('{}/{}'.format(paths((0,0),0,8,must_end_at_origin=True),4**8))\n",
"print('{}/{}'.format(paths((0,0),0,8,must_end_at_origin=False),4**8))"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.5.1+"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment