codeforce_868A_水_模拟

32 篇文章 0 订阅
27 篇文章 0 订阅

A. Bark to Unlock
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
As technologies develop, manufacturers are making the process of unlocking a phone as user-friendly as possible. To unlock its new phone, Arkady’s pet dog Mu-mu has to bark the password once. The phone represents a password as a string of two lowercase English letters.

Mu-mu’s enemy Kashtanka wants to unlock Mu-mu’s phone to steal some sensible information, but it can only bark n distinct words, each of which can be represented as a string of two lowercase English letters. Kashtanka wants to bark several words (not necessarily distinct) one after another to pronounce a string containing the password as a substring. Tell if it’s possible to unlock the phone in this way, or not.

Input
The first line contains two lowercase English letters — the password on the phone.

The second line contains single integer n (1 ≤ n ≤ 100) — the number of words Kashtanka knows.

The next n lines contain two lowercase English letters each, representing the words Kashtanka knows. The words are guaranteed to be distinct.

Output
Print “YES” if Kashtanka can bark several words in a line forming a string containing the password, and “NO” otherwise.

You can print each letter in arbitrary case (upper or lower).

Examples
input
ya
4
ah
oy
to
ha
output
YES
input
hp
2
ht
tp
output
NO
input
ah
1
ha
output
YES
Note
In the first example the password is “ya”, and Kashtanka can bark “oy” and then “ah”, and then “ha” to form the string “oyahha” which contains the password. So, the answer is “YES”.

题意:
给你两个字符这个是开手机的密码,接下来给你n个长度为2
的字符,每个字符能用多次,下面的字符能拼成第一行的两个字符就输出YES 否则NO;
解:
先标记密码的第一个字符查找是否有,然后标记查找第二个,特判相同的情况

#include<iostream>
#include<string>
#include<map>
#include<cstdio>
using namespace std;
int main()
{
    string st,s[11111];
    int n,i,j;
    while(cin>>st>>n)
    {

        map<char,int> q;
        q.clear();
        q[st[0]]=1;
        int f=0;
        for(i=0; i<n; i++)
        {

            cin>>s[i];
            if(s[i]==st)
                f=1;
        }
        if(f)
        {
            puts("YES");
            continue;
        }
        int f1=0,f2=0;
        for(i=0; i<n; i++)
        {
            // cout<<s[i][1]<<endl;
            if(q[s[i][1]])
            {
                f1=1;
                break;
            }
        }
        if(f1)
        {
            q.clear();
            q[st[1]]=1;
            for(i=0; i<n; i++)
            {
                //cout<<s[i][0]<<endl;
                if(q[s[i][0]])
                {
                    f2=1;
                    break;
                }
            }
            if(f2)
                puts("YES");
            else puts("NO");
        }
        else puts("NO");
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值