CF1065D.Three Pieces
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You stumbled upon a new kind of chess puzzles. The chessboard you are given is not necesserily 8×8 , but it still is N×N . Each square has some number written on it, all the numbers are from 1 to N2 and all the numbers are pairwise distinct. The j -th square in the i -th row has a number Aij written on it.
In your chess set you have only three pieces: a knight, a bishop and a rook. At first, you put one of them on the square with the number 1 (you can choose which one). Then you want to reach square 2 (possibly passing through some other squares in process), then square 3 and so on until you reach square N2 . In one step you are allowed to either make a valid move with the current piece or replace it with some other piece. Each square can be visited arbitrary number of times.
A knight can move to a square that is two squares away horizontally and one square vertically, or two squares vertically and one square horizontally. A bishop moves diagonally. A rook moves horizontally or vertically. The move should be performed to a different square from the one a piece is currently standing on.
You want to minimize the number of steps of the whole traversal. Among all the paths to have the same number of steps you want to choose the one with the lowest number of piece replacements.
What is the path you should take to satisfy all conditions?
输入格式
The first line contains a single integer N ( 3≤N≤10 ) — the size of the chessboard.
Each of the next N lines contains N integers Ai1,Ai2,…,AiN ( 1≤Aij≤N2 ) — the numbers written on the squares of the i -th row of the board.
It is guaranteed that all Aij are pairwise distinct.
输出格式
The only line should contain two integers — the number of steps in the best answer and the number of replacement moves in it.
输入输出样例
输入#1
3 1 9 3 8 6 7 4 2 5
输出#1
12 1
说明/提示
Here are the steps for the first example (the starting piece is a knight):
- Move to (3,2)
- Move to (1,3)
- Move to (3,2)
- Replace the knight with a rook
- Move to (3,1)
- Move to (3,3)
- Move to (3,2)
- Move to (2,2)
- Move to (2,3)
- Move to (2,1)
- Move to (1,1)
- Move to (1,2)