C语言问题:Ostap and Grasshopper

版权声明:本人原创文章若需转载请标明出处和作者!沙沙 https://blog.csdn.net/weixin_44143702/article/details/86514707

Ostap and Grasshopper

On the way to Rio de Janeiro Ostap kills time playing with a grasshopper he took with him in a special box. Ostap builds a line of length n such that some cells of this line are empty and some contain obstacles. Then, he places his grasshopper to one of the empty cells and a small insect in another empty cell. The grasshopper wants to eat the insect.

Ostap knows that grasshopper is able to jump to any empty cell that is exactly kcells away from the current (to the left or to the right). Note that it doesn't matter whether intermediate cells are empty or not as the grasshopper makes a jump over them. For example, if k = 1 the grasshopper can jump to a neighboring cell only, and if k = 2 the grasshopper can jump over a single cell.

Your goal is to determine whether there is a sequence of jumps such that grasshopper will get from his initial position to the cell with an insect.

Input

The first line of the input contains two integers n and k (2 ≤ n ≤ 100, 1 ≤ k ≤ n - 1) — the number of cells in the line and the length of one grasshopper's jump.

The second line contains a string of length n consisting of characters '.', '#', 'G' and 'T'. Character '.' means that the corresponding cell is empty, character '#' means that the corresponding cell contains an obstacle and grasshopper can't jump there. Character 'G' means that the grasshopper starts at this position and, finally, 'T' means that the target insect is located at this cell. It's guaranteed that characters 'G' and 'T' appear in this line exactly once.

Output

If there exists a sequence of jumps (each jump of length k), such that the grasshopper can get from his initial position to the cell with the insect, print "YES" (without quotes) in the only line of the input. Otherwise, print "NO" (without quotes).

Examples

Input

5 2
#G#T#

Output

YES

Input

6 1
T....G

Output

YES

Input

7 3
T..#..G

Output

NO

Input

6 2
..GT..

Output

NO

Note

In the first sample, the grasshopper can make one jump to the right in order to get from cell 2 to cell 4.

In the second sample, the grasshopper is only able to jump to neighboring cells but the way to the insect is free — he can get there by jumping left 5 times.

In the third sample, the grasshopper can't make a single jump.

In the fourth sample, the grasshopper can only jump to the cells with odd indices, thus he won't be able to reach the insect.

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char a[110];
int main()
{
    int n, k, i, x, y, flag, t;
    scanf("%d %d", &n, &k);
    getchar();//此处不加这个会出问题,原因未知
    gets(a);
    x = y = -1;
    for(i = 0; i < n; i++)
    {
        if(a[i] == 'G')  x = i;
        if(a[i] == 'T')  y = i;
    }
    flag = 0;
    if(x >= y)  t = x - y;
    else t = y - x;//x,y的大小是未知的,"G"和"T"的出现不分前后
    if((t) % k == 0)
    {
        flag = 1;
        if(x <= y)
        {//如果"G"出现在在前面
            for(i = x; i <= y; i += k)
            {
                if(a[i] == '#')
                {
                    flag = 0;
                    break;
                }//如果跳跃过程中出现障碍物,则不能完成跳跃
            }
        }
        else
        {//如果"T"出现在前面
            for(i = y; i <= x; i += k)
            {
                if(a[i] == '#')
                {
                    flag = 0;
                    break;
                }
            }
        }
    }
    if(flag)  printf("YES\n");
    else  printf("NO\n");
    return 0;
}

猜你喜欢

转载自blog.csdn.net/weixin_44143702/article/details/86514707