-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path1520E-arrangingTheSheep.cpp
59 lines (56 loc) · 1.23 KB
/
1520E-arrangingTheSheep.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) (x).begin(), (x).end()
#define f(i, n) for (ll i = 0; i < (n); i++)
#define fr(i, n) for (ll i = (n)-1; i >= 0; i--)
#define fex(i, s, n) for (ll i = s; i < (n); i++)
#define fexr(i, s, n) for (ll i = (n)-1; i >= s; i--)
inline ll nxt()
{
ll x;
cin >> x;
return x;
}
int main()
{
ll t = nxt();
while (t--)
{
ll n = nxt();
string s;
cin >> s;
ll cnt = 0;
ll i = 0;
ll j = n - 1;
while (i <= j && s[i] != '*')
i++;
while (i <= j && s[j] != '*')
j--;
ll left_sheep = 0;
ll right_sheep = 0;
if (i == j)
{
cout << cnt << endl;
continue;
}
while (i <= j)
{
while (i < j && s[i] == '*')
left_sheep++, i++;
while (i < j && s[j] == '*')
right_sheep++, j--;
if (left_sheep <= right_sheep)
{
cnt += left_sheep;
i++;
}
else
{
cnt += right_sheep;
j--;
}
}
cout << cnt << endl;
}
}