【水枚举】#12 A. Super Agent

A. Super Agent
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

There is a very secret base in Potatoland where potato mash is made according to a special recipe. The neighbours from Porridgia decided to seize this recipe and to sell it to Pilauland. For this mission they have been preparing special agent Pearlo for many years. When, finally, Pearlo learned all secrets of espionage, he penetrated into the Potatoland territory and reached the secret base.

Now he is standing at the entrance, but to get inside he need to pass combination lock. Minute ago one of the workers entered the password on the terminal and opened the door. The terminal is a square digital keyboard 3 × 3with digits from 1 to 9.

Pearlo knows that the password consists from distinct digits and is probably symmetric with respect to the central button of the terminal. He has heat sensor which allowed him to detect the digits which the worker pressed. Now he wants to check whether the password entered by the worker is symmetric with respect to the central button of the terminal. This fact can Help Pearlo to reduce the number of different possible password combinations.

Input

Input contains the matrix of three rows of three symbols each. Symbol «X» means that the corresponding button was pressed, and «.» means that is was not pressed. The matrix may contain no «X», also it may contain no «.».

Output

Print YES if the password is symmetric with respect to the central button of the terminal and NO otherwise.

Sample test(s)
input
XX.
...
.XX
output
YES
input
X.X
X..
...
output
NO
一个判断图形是否对称的题目,鉴于限定了3X3,所以连剪枝啥的都不要想了,n=3的时候感觉就算n^5、n^10都没啥了……暴力枚举咯~


Python:

# input  
matrix = []  
for i in range(3):  
    matrix.append(raw_input())  
# solve  
def isOk():  
    for i in range(3):  
        for j in range(3):  
            x = 2-i  
            y = 2-j  
            if matrix[i][j] != matrix[x][y]:  
               return False  
    return True  
# ouput  
if isOk():  
    print "YES"  
else:  
    print "NO"  

C++:

#include <cstdio>
using namespace std;

int main()
{
	char s[3][3];
	char a;
	for(int i=0;i<3;i++)
	{ 
		for(int j=0;j<3;j++)
			scanf("%c",&s[i][j]);
		scanf("%c",&a);
	} 
	printf((s[0][0]==s[2][2]&&s[0][1]==s[2][1]&&s[0][2]==s[2][0]&&s[1][0]==s[1][2])?"YES":"NO");
	return 0; 
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

糖果天王

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值