Home / Expert Answers / Computer Science / your-university-39-s-board-game-club-just-hosted-a-checkers-tournament-and-you-wereassigned-to-take--pa264

(Solved): Your university's board game club just hosted a Checkers tournament, and you wereassigned to take no ...



Your university's board game club just hosted a Checkers tournament, and you were
assigned to take notes on the games. Unfortunately, while walking home, you dropped all
of your papers into a puddle! Disaster! Much of what you wrote is now unreadable; all you
have left are some lists of moves played in the middle of various games. Is there some
way you can reconstruct what happened in those games? You had better fix things fast, or
they will demote you to Tic-Tac-Toe recordkeeper! Checkers (or English Draughts) is a
well-known board game with simple rules. It is played on the dark squares of an 8 × 8
checkerboard. There are two players, Black and White, who alternate turns moving their
pieces (all of Black's pieces are black and all of White's pieces are white). Each piece
occupies a single dark square, and can be either a normal man or a promoted king. A turn
consists of choosing one piece and moving it in one of two ways:
1. Shifting it diagonally to an unoccupied adjacent dark square, as shown in Figure
1(a). This is called a simple move. If the piece is a man, it can move only in the two
diagonal directions towards the opposing side of the board (towards the bottom for
Black, the top for White). If the piece is a king, it can move in all four diagonal
directions.
2. Jumping over an adjacent enemy piece to an unoccupied square immediately on
the other side, then removing (capturing) that piece. Men can jump only in the two
directions described above, while kings can jump in all four. The player can then
repeat this step, continuing to jump with the same piece as long as there are
properly-positioned enemy pieces to capture. Such a sequence of one or more
jumps is called a jump move. Figure 1(b) shows a jump move comprising three
jumps.
In Checkers, captures are forced moves. If a jump move is available at the start of a
player's turn, they must jump, and cannot stop jumping with that piece until it has no more
possible jumps. They are free to choose which piece to jump with, and where, if there are
multiple possibilities. In Figure 1(b), Black could not have made any other move. If a man
reaches the farthest row from its player (that is, a black man reaches the bottom row or a
white man reaches the top row), it is removed from the board and replaced by a king of the
same color (it is said to be promoted), and the turn ends. A piece cannot be promoted and
then jump backwards as a new king in the same turn. Given a list of moves, find a setup
of pieces such that the moves can be legally played in sequence starting from that setup.
This setup may not have black men on the bottom row or white men on the top row, since
they would have been promoted to kings already. You need only ensure that the rules
above are obeyed; you do not need to ensure that this setup is reachable in a real game
of Checkers.

Figure 1: (a), (b) The first two moves in Sample Input 1. The larger pieces are kings and the smaller ones are men. Black sit
Figure 1: (a), (b) The first two moves in Sample Input 1. The larger pieces are kings and the smaller ones are men. Black sits at the top and White at the bottom. (c) Numbering used in the input. Input The first line of input contains a character \( c \) and an integer \( n \), where \( c \in\{B, W\} \) indicates which player makes the first move (Black or White respectively) and \( n(1 \leq n \leq 100) \) is the number of moves in the list. Then follow \( n \) lines, each of which describes a move in the standard Checkers notation defined below. The dark squares are identified by numbers \( 1- \) 32, as shown in Figure C.1(c). A simple move from square a to square b is written as a-b. A jump move starting at a and jumping to b1, b2, .... bk is written as axb1xb2x \( \cdots \) xbk. There is always a valid solution for the given set of moves. Output Output two boards side-by-side (separated by a space), giving the positions of all pieces on the board before (on the left) and after (on the right) the given moves. Use "- for light squares, ". for empty dark squares, lowercase ' \( \mathrm{B} \) ' and ' \( W \) ' for black and white men, and uppercase ' \( \mathrm{B} \) ' and ' \( \mathrm{W} \) ' for black and white kings. If there is more than one valid solution, any one is acceptable.


We have an Answer from Expert

View Expert Answer

Expert Answer


The brief
We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe