-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_1461A.cpp
42 lines (42 loc) · 977 Bytes
/
Problem_1461A.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>
using namespace std;
int main()
{
int test, a, b, c, n, m, i, j, cnt;
cin >> test;
while (test--)
{
cnt = 0;
cin >> n >> m;
int v[n][m];
string sx[n];
for (auto &i : sx)
cin >> i;
for (i = 0; i < n; i++, a = 0)
for (j = 0; j < m; j++)
{
if (sx[i][j] == '*')
a++;
else
a = 0;
v[i][j] = a;
}
for (i = 0; i < n; i++)
for (j = 0; j < m; j++, c = 0)
{
a = i;
b = j;
while (a < n && b < m)
{
if (v[a][b] > c)
cnt++;
else
break;
c += 2;
a++;
b++;
}
}
cout << cnt << '\n';
}
}