989A A Blend of Springtime

A. A Blend of Springtime
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
When the curtains are opened, a canvas unfolds outside. Kanno marvels at all the blonde colours along the riverside — not tangerines, but blossoms instead.

"What a pity it's already late spring," sighs Mino with regret, "one more drizzling night and they'd be gone."

"But these blends are at their best, aren't they?" Absorbed in the landscape, Kanno remains optimistic.

The landscape can be expressed as a row of consecutive cells, each of which either contains a flower of colour amber or buff or canary yellow, or is empty.

When a flower withers, it disappears from the cell that it originally belonged to, and it spreads petals of its colour in its two neighbouring cells (or outside the field if the cell is on the side of the landscape). In case petals fall outside the given cells, they simply become invisible.

You are to help Kanno determine whether it's possible that after some (possibly none or all) flowers shed their petals, at least one of the cells contains all three colours, considering both petals and flowers. Note that flowers can wither in arbitrary order.

Input

The first and only line of input contains a non-empty string ss consisting of uppercase English letters 'A', 'B', 'C' and characters '.' (dots) only (|s|100|s|≤100) — denoting cells containing an amber flower, a buff one, a canary yellow one, and no flowers, respectively.

Output

Output "Yes" if it's possible that all three colours appear in some cell, and "No" otherwise.

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

Examples
input
Copy
.BAC.
output
Copy
Yes
input
Copy
AA..CB
output
Copy
No
Note

In the first example, the buff and canary yellow flowers can leave their petals in the central cell, blending all three colours in it.

In the second example, it's impossible to satisfy the requirement because there is no way that amber and buff meet in any cell.



题意:一朵花有三种颜色,ABC,现在花凋谢了,也就是这些颜色会消失,让你判断有没有可能有一朵花三种颜色都在。

题解:模拟 再输入的一串字符串里面判断里面有ABC的全排列。

#include<bits/stdc++.h>
using namespace std;
int main()
{
    string s;
    cin>>s;
    if(s.find("ABC")!=s.npos||s.find("ACB")!=s.npos||s.find("BAC")!=s.npos||s.find("BCA")!=s.npos||s.find("CAB")!=s.npos||s.find("CBA")!=s.npos)
        puts("Yes");
    else  puts("No");
    return 0;
}


s=input()
if "ABC" in s or "ACB" in s or "BAC" in s or "BCA" in s or "CAB" in s or "CBA" in s:
    print("YES")

else:
    print("NO")

猜你喜欢

转载自blog.csdn.net/memory_qianxiao/article/details/80669491