zoukankan      html  css  js  c++  java
  • Codeforces 868A Bark to Unlock

    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".

    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个字母的目标串,和其他一些2个字母的串(你可以认为每个都有无限个),是否可以用一些来组成一个字符串,使得它包含目标串。

      直接判断是否存在一个字符串的第二个字符等于它的第一个字符,一个字符串的第一个字符等于它的第二个字符,以及是否有字符串和目标串相等。

    Code

     1 /**
     2  * Codeforces
     3  * Problem#868A
     4  * Accepted
     5  * Time: 31ms
     6  * Memory: 0k
     7  */
     8 #include <bits/stdc++.h>
     9 using namespace std;
    10 typedef bool boolean;
    11 
    12 char ss[5], buf[5];
    13 int n; 
    14 boolean front = false, rear = false;
    15 
    16 inline void work() {
    17     scanf("%s%d", ss, &n);
    18     for(int i = 1; i <= n; i++) {
    19         scanf("%s", buf);
    20         if(ss[0] == buf[0] && ss[1] == buf[1]) {
    21             puts("YES");
    22             return;
    23         }
    24         if(ss[0] == buf[1])
    25             rear = true;
    26         if(ss[1] == buf[0])
    27             front = true;
    28         if(rear && front) {
    29             puts("YES");
    30             return;
    31         }
    32     }
    33     puts("NO");
    34 }
    35 
    36 int main() {
    37     work();
    38     return 0;
    39 }
  • 相关阅读:
    WCF双工通讯以及客户端间的间接通讯
    认识IoC
    学习“迷你ASP.NET MVC框架”后的小结
    MVP的PV模式与SC模式
    Android学习笔记(九) 视图的应用布局效果
    C# 动态编译
    C#中协变与抗变(逆变)
    线程池ThreadPool的初探
    关于异步的初步认识
    仿Office的程序载入窗体
  • 原文地址:https://www.cnblogs.com/yyf0309/p/7632523.html
Copyright © 2011-2022 走看看