-
Notifications
You must be signed in to change notification settings - Fork 1
/
CDCR15_1.cpp
42 lines (37 loc) · 939 Bytes
/
CDCR15_1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <bits/stdc++.h>
#define ll long
#define get(a) scanf("%ld", &a);
#define rep(n) for( ll i = 1; i <= n; i++ )
#define repVector(v) for( typeof(v.begin()) it = v.begin(); it != v.end(); it++ )
#define repSet(s) for( typeof(s.begin()) it = s.begin(); it != s.end(); it++ )
#define all(c) c.begin(), c.end()
#define pb push_back
#define absol(a) ( ( a >= 0 ) ? a : -a )
#define FOR(i,a,b) for( ll i = a; i <= b; i++ )
#define matrix vector< vector<ll> >
#define F first
#define S second
#define mp make_pair
#define L 2*r
#define R 2*r+1
#define INPFILE freopen("input.in","r",stdin)
using namespace std;
int main() {
ll t; get(t);
while(t--) {
ll n, k;
get(n); get(k);
char str[n+5];
scanf("%s", str+1);
ll mx = 0, dist = 0;
FOR(i,1,n)
if( str[i] == '.' )
dist = 0;
else if( str[i] == '#' )
{ dist++; mx = max( mx, dist ); }
if( mx >= k )
printf("NO\n");
else
printf("YES\n");
}
}