Codeforces Round #438 (Div. 1 + Div. 2 combined) A. Bark to Unlock

A. Bark to Unlock

Problem Statement

    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

Example 1
    Input
        ya
        4
        ah
        oy
        to
        ha
    Output
        Yes
Example 2
    Input
        hp
        2
        ht
        tp
    Output
        NO
Example 3
    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”.
    In the second example Kashtanka can’t produce a string containing password as a substring. Note that it can bark “ht” and then “tp” producing “http”, but it doesn’t contain the password “hp” as a substring.
    In the third example the string “hahahaha” contains “ah” as a substring.

题意

    给你一个长度为2的字符串为密码。再给你n个长度为2的串,问你能否将这些串其中的两个或多个拼起来得到密码中的串作为子串(P.S.可以自己拼接在自己后面)

思路

    我们很容易看出,如果原串就有与密码串匹配的那么直接输出YES,否则我们n^2遍历两个串,如果有一个串开头等于密码串的结尾并且另一个串的结尾等于密码串的开头就是YES,否则就是NO。

Code

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
inline void readInt(int &x) {
    x=0;int f=1;char ch=getchar();
    while(!isdigit(ch)){if(ch=='-')f=-1;ch=getchar();}
    while(isdigit(ch))x=x*10+ch-'0',ch=getchar();
    x*=f;
}
inline void readLong(ll &x) {
    x=0;int f=1;char ch=getchar();
    while(!isdigit(ch)){if(ch=='-')f=-1;ch=getchar();}
    while(isdigit(ch))x=x*10+ch-'0',ch=getchar();
    x*=f;
}
/*================Header Template==============*/
char s[3];
int n;
char st[105][3];
bool ok=0;
int main() {
    scanf("%s",s);
    readInt(n);
    for(int i=1;i<=n;i++) {
        scanf("%s",st[i]);
        if(strcmp(st[i],s)==0)//当时我没有用strcmp而是直接==,就fst了。
            ok=1;
    }
    for(int i=1;i<=n;i++)
        for(int j=1;j<=n;j++)
            if(st[i][0]==s[1]&&st[j][1]==s[0])
                ok=1;
    if(ok)
        puts("YES");
    else
        puts("NO");
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值