eolymp
bolt
Try our new interface for solving problems
Problems

Camelot

Camelot

Centuries ago, King Arthur and the Knights of the Round Table used to meet every year on New Year’s Day to celebrate their fellowship. In remembrance of these events, we consider a board game for one player, on which one king and several knight pieces are placed at random on distinct squares. The Board is an 8x8 array of squares (Figure 1). \includegraphics{https://static.e-olymp.com/content/60/6031b964583fad19e1d75eb330980261181db96f.jpg} Figure 1. A board The \textbf{King} can move to any adjacent square from cells to cells, as shown in Figure 2, as long as it does not fall off the board. \includegraphics{https://static.e-olymp.com/content/8c/8cf7dec45f2afed775a291b393d4aa8bab151684.jpg} Figure 2. All possible movements of the king A \textbf{Knight} can jump from cells to cells, as shown in Figure 3, as long as it does not fall off the board. \includegraphics{https://static.e-olymp.com/content/9c/9c6c2c8cc9a8939cac34250060bffa302b66761f.jpg} Figure 3. All possible movements of a knight During the play, the player can place more than one piece in the same square. The board squares are assumed big enough so that a piece is never an obstacle for other piece to move freely. The player’s goal is to move the pieces so as to gather them all in the same square, in the smallest possible number of moves. To achieve this, he must move the pieces as prescribed above. Additionally, whenever the king and one or more knights are placed in the same square, the player may choose to move the king and one of the knights together henceforth, as a single knight, up to the final gathering point. Moving the knight together with the king counts as a single move. Write a program to compute the minimum number of moves the player must perform to produce the gathering. \InputFile The input file contains the initial board configuration, encoded as a character string. The string contains a sequence of up to \textbf{64} distinct board positions, being the first one the position of the king and the remaining ones those of the knights. Each position is a letter-digit pair. The letter indicates the horizontal board coordinate, the digit indicates the vertical board coordinate. \OutputFile The output file must contain a single line with an integer indicating the minimum number of moves the player must perform to produce the gathering.
Time limit 1 second
Memory limit 64 MiB
Input example #1
D4A3A8H1H8
Output example #1
10