A - Beautiful Matrix
Problem description
You've got a?5?×?5?matrix, consisting of?24?zeroes and a single number one. Let's index the matrix rows by numbers from?1?to?5?from top to bottom, let's index the matrix columns by numbers from?1?to?5?from left to right. In one move, you are allowed to apply one of the two following transformations to the matrix:
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.
Input
The input consists of five lines, each line contains five integers: the?j-th integer in the?i-th line of the input represents the element of the matrix that is located on the intersection of the?i-th row and the?j-th column. It is guaranteed that the matrix consists of?24?zeroes and a single number one.
Output
Print a single integer — the minimum number of moves needed to make the matrix beautiful.
Examples
Input
0 0 0 0 00 0 0 0 1
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
Output
3Input
0 0 0 0 00 0 0 0 0
0 1 0 0 0
0 0 0 0 0
0 0 0 0 0
Output
1解題思路:題目的意思就是有一個(gè)5*5的矩陣,其中只有一個(gè)元素值為1,其余元素的值全部為0,從元素1這個(gè)位置移到中心點(diǎn)(2,2)(下標(biāo)從0~4)的過程中,每次只能向上、下、左、右(其中一個(gè)方向)移動(dòng)一步,求最小的移動(dòng)步數(shù)。簡(jiǎn)單模擬一下過程即可推出:設(shè)1元素的坐標(biāo)為(row,col),則移動(dòng)的最小步數(shù)為abs(row-2)+abs(col-2),簡(jiǎn)單AC。
AC代碼: 1 #include<bits/stdc++.h> 2 using namespace std; 3 int main(){ 4 int row,col,x; 5 for(int i=0;i<5;++i){ 6 for(int j=0;j<5;++j){ 7 cin>>x; 8 if(x){row=i;col=j;} 9 } 10 } 11 cout<<abs(row-2)+abs(col-2)<<endl; 12 return 0; 13 }
轉(zhuǎn)載于:https://www.cnblogs.com/acgoto/p/9122996.html
總結(jié)
以上是生活随笔為你收集整理的A - Beautiful Matrix的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 儿童电子手表怎么设置(儿童电子手表怎样调
- 下一篇: 电脑蓝牙调试软件(电脑蓝牙调试软件nrf