File tree Expand file tree Collapse file tree 1 file changed +56
-0
lines changed Expand file tree Collapse file tree 1 file changed +56
-0
lines changed Original file line number Diff line number Diff line change
1
+ // ॐ नमः शिवाय
2
+ #include < bits/stdc++.h>
3
+ using namespace std ;
4
+
5
+ #define ll long long
6
+ #define pb push_back
7
+ #define ff first
8
+ #define ss second
9
+ #define mp make_pair
10
+
11
+ // Code Written By: Vikash Patel
12
+ // Codeforces Profile: https://codeforces.com/profile/vikashpatel
13
+
14
+ int main ()
15
+ {
16
+ ios_base::sync_with_stdio (0 );
17
+ cin.tie (0 );
18
+ cout.tie (0 );
19
+
20
+ // #ifndef ONLINE_JUDGE
21
+ // freopen("input.txt", "r", stdin);
22
+ // freopen("/Users/vikash/Desktop/output.txt", "w", stdout);
23
+ // #endif
24
+
25
+ int t;
26
+ cin>>t;
27
+ while (t--)
28
+ {
29
+ int n, m;
30
+ cin>>n>>m;
31
+ string carpet[n];
32
+ for (int i=0 ; i<n; i++)
33
+ {
34
+ cin>>carpet[i];
35
+ }
36
+ string vika = " vika" ;
37
+ int k = 0 ;
38
+ for (int i=0 ; i<m; i++)
39
+ {
40
+
41
+ for (int j=0 ; j<n; j++)
42
+ {
43
+ if (carpet[j][i] == vika[k])
44
+ {
45
+ k++;
46
+ break ;
47
+ }
48
+ }
49
+ }
50
+ if (k>=4 )
51
+ cout<<" YES" <<endl;
52
+ else
53
+ cout<<" NO" <<endl;
54
+ }
55
+ return 0 ;
56
+ }
You can’t perform that action at this time.
0 commit comments