Educational Codeforces Round 63 (Rated for Div. 2) Game with Telephone Numbers B

A telephone number is a sequence of exactly 11

digits such that its first digit is 8.

Vasya and Petya are playing a game. Initially they have a string s

of length n (n is odd) consisting of digits. Vasya makes the first move, then players alternate turns. In one move the player must choose a character and erase it from the current string. For example, if the current string 1121, after the player's move it may be 112, 111 or 121. The game ends when the length of string s

becomes 11. If the resulting string is a telephone number, Vasya wins, otherwise Petya wins.

You have to determine if Vasya has a winning strategy (that is, if Vasya can win the game no matter which characters Petya chooses during his moves).

Input

The first line contains one integer n

(13≤n<105, n is odd) — the length of string s

.

The second line contains the string s

(|s|=n

) consisting only of decimal digits.

Output

If Vasya has a strategy that guarantees him victory, print YES.

Otherwise print NO.

Examples

Input

Copy

13
8380011223344

Output

Copy

YES

Input

Copy

15
807345619350641

Output

Copy

NO

Note

In the first example Vasya needs to erase the second character. Then Petya cannot erase a character from the remaining string 880011223344 so that it does not become a telephone number.

In the second example after Vasya's turn Petya can erase one character character 8. The resulting string can't be a telephone number, because there is no digit 8 at all.

#include <iostream>
#include <vector>
#include <queue>
#include <cstdio>

using namespace std;
char a[320000];
int main()
{
    int n;
    while(scanf("%d",&n)!=EOF)
    {
        scanf("%s",a+1);
        int sum=0;
        for(int i=1;i<=n-10;i++)
        {
            if(a[i]=='8') sum++;
        }
        int m;
        m=(n-11)/2+1;
        if(sum>=m)
        {
            printf("YES\n");
        }
        else printf("NO\n");
    }
}

 

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-11 11:39
给我开两千工资还好意思,笑死我没,还转正才交社保,别太离谱啊我说
机械打工仔:前几天还看到一个试用期不让交社保的,今天就看到个实习期就要社保的,也算是开了眼了
点赞 评论 收藏
分享
Lorn的意义:你这种岗位在中国现在要么牛马天天加班,要么关系户进去好吃好喝,8年时间,真的天翻地覆了,对于资本来说你就说一头体力更好的牛马,哎,退伍没有包分配你真的亏了。
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
07-11 12:10
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务