All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > General
Trading Places 2 (Posted on 2006-05-30) Difficulty: 3 of 5
n white markers are placed on the first n squares of a row of 2n+1 squares.
There is a space of 1 square and then n black markers.
White markers can only move right.
Black markers can only move left.
Markers can move forward one square, or can jump over a marker of either colour if there is an empty square to land on.
Markers are not removed from the board if jumped.
You DO NOT have to alternate moving black and white markers.

a) Find an algorithm to solve this puzzle.
b) How many moves does it take to complete?
c) If you make random moves what is the probability of completion?

No Solution Yet Submitted by Sir Percivale    
Rating: 4.0000 (1 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
Solution Solution to parts A and B | Comment 1 of 4

Call a move by a white marker W and by a black marker B.  There is no need to differentiate which white or black marker we are talking about, as on each move there will be at most one of each color that can be moved. 

(Given the condition that a marker can jump over another marker of the same color, technically more possibilities exist.  However, it is never advantageous for a marker to jump over another of the same color, so for the purposes of the following description I will never use that move). 

A) Alternate moving colors, increasing the number of moves by one each time until you reach n.  Still alternating colors, make n moves three times, then decrease back to one.  I know that sounds confusing, so here are some examples (the "make n moves thee times" part has been underlined to clarify what I mean):

For n = 2, move W BB WW BB W

For n = 3, move W BB WWW BBB WWW BB W

For n = 4, move W BB WWW BBBB WWWW BBBB WWW BB W

etc.

B) By observation, each of these puzzles takes n^2 + 2n moves to complete. 

Notice that the number of moves in each game is 1 2 3 ... n n n ... 3 2 1.  The sum of the moves for any n is then 2 times the nth triangle number, plus n.  The formula for the nth triangle number is n(n+1)/2.  Multiplying this by two and adding n gives n(n+1) + n, which simplifies to n(n+2) or n^2 + 2n.

C) I haven't done this yet. :)


  Posted by tomarken on 2006-05-30 12:15:31
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (24)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information