Mike and Cellphone

                        A. Mike and Cellphone
                       time limit per test1 second
                       memory limit per test256 megabytes
                         inputstandard input
                         outputstandard output

While swimming at the beach, Mike has accidentally dropped his cellphone into the water. There was no worry as he bought a cheap replacement phone with an old-fashioned keyboard. The keyboard has only ten digital equal-sized keys, located in the following way:
这里写图片描述

Together with his old phone, he lost all his contacts and now he can only remember the way his fingers moved when he put some number in. One can formally consider finger movements as a sequence of vectors connecting centers of keys pressed consecutively to put in a number. For example, the finger movements for number “586” are the same as finger movements for number “253”:

这里写图片描述

Mike has already put in a number by his “finger memory” and started calling it, so he is now worrying, can he be sure that he is calling the correct number? In other words, is there any other number, that has the same finger movements?

Input

The first line of the input contains the only integer n (1 ≤ n ≤ 9) — the number of digits in the phone number that Mike put in.

The second line contains the string consisting of n digits (characters from ‘0’ to ‘9’) representing the number that Mike put in.

Output

If there is no other phone number with the same finger movements and Mike can be sure he is calling the correct number, print “YES” (without quotes) in the only line.

Otherwise print “NO” (without quotes) in the first line.

Examples

input
3
586

output
NO

input
2
09

output
NO

input
9
123456789

output
YES

input
3
911

output
YES

Note
You can find the picture clarifying the first sample case in the statement above.

题意:给你一串数字,问这一串数字的按键顺序是不是唯一的?

思路:按键顺序唯一有几种情况,首先,不含有0、7、9这三个数的肯定是NO,然后判断是否有0,若有0,那么只需要第一行有数字即可;若没有0,那么需要第一行、第三行、第一列、第三列都有数字。

code:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
#define INF 0x3f3f3f3f

int n;
char a[12];
bool dx[5],dy[5];

int main()
{
    scanf("%d",&n);
    scanf("%s",a);
    int u = 0;
    for(int i=0;i<=n-1;i++)
      if(a[i] == '0' || a[i] == '7' || a[i] == '9')
    {
        u = 1;
        break;
    }
    if(!u)
    {
        printf("NO\n");
        return 0;
    }
    int x=0,y=0;
    int flag = 0;
    for(int i=0;i<=n-1;i++)
    {
        if(a[i] == '0')
        {
           flag = 1;
           continue;
        }
        if((a[i] - 48)%3 == 0) x = (a[i]-48)/3; else x = (a[i]-48)/3 +1;
        y = (a[i]-48) % 3;
        if(x == 3 ) x = 0;
        dx[x] = 1;
        dy[y] = 1;
    }
    if(flag)
    {
        if(dx[1]) printf("YES\n");
        else printf("NO\n");
    }
    else
    {
       if(dx[0] && dx[1] && dy[0] && dy[1])
         printf("YES\n");
       else
        printf("NO\n");
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值