CF263A.Beautiful Matrix

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You've got a 5×55×5 matrix, consisting of 2424 zeroes and a single number one. Let's index the matrix rows by numbers from 11 to 55 from top to bottom, let's index the matrix columns by numbers from 11 to 55 from left to right. In one move, you are allowed to apply one of the two following transformations to the matrix:

  1. Swap two neighboring matrix rows, that is, rows with indexes ii and i+1i+1 for some integer ii (1<=i<5) .
  2. Swap two neighboring matrix columns, that is, columns with indexes jj and j+1j+1 for some integer jj (1<=j<5) .

You think that a matrix looks beautiful, if the single number one of the matrix is located in its middle (in the cell that is on the intersection of the third row and the third column). Count the minimum number of moves needed to make the matrix beautiful.

输入格式

The input consists of five lines, each line contains five integers: the jj -th integer in the ii -th line of the input represents the element of the matrix that is located on the intersection of the ii -th row and the jj -th column. It is guaranteed that the matrix consists of 2424 zeroes and a single number one.

输出格式

Print a single integer — the minimum number of moves needed to make the matrix beautiful.

输入输出样例

  • 输入#1

    0 0 0 0 0
    0 0 0 0 1
    0 0 0 0 0
    0 0 0 0 0
    0 0 0 0 0
    

    输出#1

    3
    
  • 输入#2

    0 0 0 0 0
    0 0 0 0 0
    0 1 0 0 0
    0 0 0 0 0
    0 0 0 0 0
    

    输出#2

    1
    
首页