CF1221E.Game With String

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Alice and Bob play a game. Initially they have a string s1,s2,,sns_1, s_2, \dots, s_n , consisting of only characters . and X. They take alternating turns, and Alice is moving first. During each turn, the player has to select a contiguous substring consisting only of characters . and replaces each of them with X. Alice must select a substing of length aa , and Bob must select a substring of length bb . It is guaranteed that a>ba > b .

For example, if s=s = ...X.. and a=3a = 3 , b=2b = 2 , then after Alice's move string can turn only into XXXX... And if it's Bob's turn and the string s=s = ...X.., then after Bob's move the string can turn into XX.X.., .XXX.. or ...XXX.

Whoever is unable to make a move, loses. You have to determine who wins if they both play optimally.

You have to answer qq independent queries.

输入格式

The first line contains one integer qq ( 1q31051 \le q \le 3 \cdot 10^5 ) — the number of queries.

The first line of each query contains two integers aa and bb ( 1b<a31051 \le b < a \le 3 \cdot 10^5 ).

The second line of each query contains the string ss ( 1s31051 \le |s| \le 3 \cdot 10^5 ), consisting of only characters . and X.

It is guaranteed that sum of all s|s| over all queries not exceed 31053 \cdot 10^5 .

输出格式

For each test case print YES if Alice can win and NO otherwise.

You may print every letter in any case you want (so, for example, the strings yEs, yes, Yes and YES will all be recognized as positive answer).

输入输出样例

  • 输入#1

    3
    3 2
    XX......XX...X
    4 2
    X...X.X..X
    5 3
    .......X..X
    

    输出#1

    YES
    NO
    YES
    

说明/提示

In the first query Alice can select substring s3s5s_3 \dots s_5 . After that ss turns into XXXXX...XX...X. After that, no matter what move Bob makes, Alice can make the move (this will be her second move), but Bob can't make his second move.

In the second query Alice can not win because she cannot even make one move.

In the third query Alice can choose substring s2s6s_2 \dots s_6 . After that ss turns into .XXXXX.X..X, and Bob can't make a move after that.

首页