there are 8 cards numbered in acending order. they alternate between green and red. player 1 takes red.
each player takes a turn switching any two cards, such that the card on the right is smaller than the card on the left after the switch.
the goal of the game is to get your 4 colored cards in decending order. if after yor move, both are in decending, its a draw. the game also has the pie rule: if your first move is viewed as too strong by your opponent, he may switch colors as his move.
so, what's the optimal first move for each side?
example game:
12345678 <- initial state
1 5 3 4 2 6 7 8 <- player 1 swaps 2 and 5.
1 6 3 4 2 5 7 8 <- player 2 swaps 5 and 6.
1 6 7 4 2 5 3 8 <- player 1 swaps 7 and 3. (if player 2 now swaps 1 and 8, it would be a draw.)
Question
Guest
i fould a neat little game on the internet.
there are 8 cards numbered in acending order. they alternate between green and red. player 1 takes red.
each player takes a turn switching any two cards, such that the card on the right is smaller than the card on the left after the switch.
the goal of the game is to get your 4 colored cards in decending order. if after yor move, both are in decending, its a draw. the game also has the pie rule: if your first move is viewed as too strong by your opponent, he may switch colors as his move.
so, what's the optimal first move for each side?
example game:
1 2 3 4 5 6 7 8 <- initial state
1 5 3 4 2 6 7 8 <- player 1 swaps 2 and 5.
1 6 3 4 2 5 7 8 <- player 2 swaps 5 and 6.
1 6 7 4 2 5 3 8 <- player 1 swaps 7 and 3. (if player 2 now swaps 1 and 8, it would be a draw.)
1 6 7 4 2 8 3 5 <- player 2 swaps 5 and 8.
1 6 7 5 2 8 3 4 <- player 1 swaps 4 and 5.
1 6 8 5 2 7 3 4 <- player 2 swaps 8 and 7.
1 6 8 7 2 5 3 4 <- player 1 swaps 7 and 5.
1 6 8 7 3 5 2 4
1 6 8 7 5 3 2 4
1 6 8 7 5 4 2 3
2 6 8 7 5 4 1 3
2 6 8 4 5 7 1 3
2 6 8 4 7 5 1 3
3 6 8 4 7 5 1 2
4 6 8 3 7 5 1 2
8 6 4 3 7 5 1 2 <- player 2 wins.
Link to comment
Share on other sites
32 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.