• Codeforces Round #361 (Div. 2)A. Mike and Cellphone


    A. Mike and Cellphone
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard 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.

    直接暴力模拟。

    记录一下状态,然后暴力枚举每一个位置,看看有几个位置满足那个状态,如果答案数大于1  那么他就有可能播错电话。..

    ccf上有一个类似的..我是不是在做广告...

    /* ***********************************************
    Author        :guanjun
    Created Time  :2016/7/7 22:40:13
    File Name     :cf361.cpp
    ************************************************ */
    #include <iostream>
    #include <cstring>
    #include <cstdlib>
    #include <stdio.h>
    #include <algorithm>
    #include <vector>
    #include <queue>
    #include <set>
    #include <map>
    #include <string>
    #include <math.h>
    #include <stdlib.h>
    #include <iomanip>
    #include <list>
    #include <deque>
    #include <stack>
    #define ull unsigned long long
    #define ll long long
    #define mod 90001
    #define INF 0x3f3f3f3f
    #define maxn 10010
    #define cle(a) memset(a,0,sizeof(a))
    const ull inf = 1LL << 61;
    const double eps=1e-5;
    using namespace std;int a[maxn];
    int b[4][3]={
        1,2,3,
        4,5,6,
        7,8,9,
        INF,0,INF
    };
    map<int,pair<int,int> >mp;
    int main()
    {
        int n;
        string s;
        cin>>n;
        cin>>s;
        for(int i=0;i<n;i++){
            a[i+1]=s[i]-'0';
        }
        for(int i=0;i<4;i++){
            for(int j=0;j<3;j++){
                mp[b[i][j]]={i,j};
            }
        }
        vector<pair<int,int> >v;
        int t=1;
        for(int i=2;i<=n;i++){
            int x=mp[a[i]].first-mp[a[t]].first;
            int y=mp[a[i]].second-mp[a[t]].second;
            v.push_back({x,y});
            t=i;
        }
        int ans=0;
        int m=v.size();for(int i=0;i<4;i++){
            for(int j=0;j<3;j++){
                if(b[i][j]==INF)continue;
                int k;
                int ox=i;
                int oy=j;
                for(k=0;k<m;k++){
                    int x=ox+v[k].first;
                    int y=oy+v[k].second;
                    if(x>=4||y>=3||x<0||y<0)break;
                    if(b[x][y]==INF)break;
                    ox=x;
                    oy=y;
                }
                if(k==m)ans++;
    
            }
        }
        if(ans>1)puts("NO");
        else puts("YES");
        return 0;
    }
  • 相关阅读:
    小老虎CSDN博客流量分析
    C#中字符串的内存分配与驻留池
    最简单的基于FFmpeg的封装格式处理:视音频分离器(demuxer)
    HDU 3037 Saving Beans(Lucas定理的直接应用)
    Linux中IRC通讯工具Pidgin的基本用法
    jQuery整理笔记八----jQuery的Ajax
    Android ServiceManager启动
    C++开源码项目汇总
    虚拟现实游戏的十大误区
    适用android的MVP:怎样组织展示层
  • 原文地址:https://www.cnblogs.com/pk28/p/5651903.html
Copyright © 2020-2023  润新知