Chess 5 Piece Puzzle: Place the King, Queen, Rook, Bishop and Knight
Source: Mailed to me by Smriti Mittal (Final year student, IIT Bombay) Problem: Green numbers indicate how many pieces could move to that square on the next move. Blue squares show the possible locations of the following five different chess pieces: King Queen Rook Bishop Knight How are the five pieces arranged? Lets mark the squares as (r,c) where r is the row number and c is the column number. So, the squares where the pieces are to be kept are: (1,1), (1,8), (5,8), (6,3), (8,2) Solution: Highlight the part between the * symbols for the answer. * The unique arrangement: (1,1) Knight, (1,8) Queen, (5,8) Rook, (6,3) King, (8,2) Bishop. Check against the green numbers: (1,2) and (1,6) are each attacked exactly once - by the queen along row 1 (the knight at (1,1) does not reach them). (4,5) is attacked once - by the queen on the long diagonal (1,8)-(5,4). (4,6) is attacked once - by the bishop on the diagonal (8,2)-(4,6). (3,3) is attacked by nobody. Every other candi...