测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A11308. Thorns and Coins

编程题 普及/提高-

题目描述

During your journey through computer universes, you stumbled upon a very interesting world. It is a path with $n$ consecutive cells, each of which can either be empty, contain thorns, or a coin. In one move, you can move one or two cells along the path, provided that the destination cell does not contain thorns (and belongs to the path). If you move to the cell with a coin, you pick it up.

![](/uploads/acgo/image/cadf3df54f080aa8_33f458406596.jpeg) Here, green arrows correspond to legal moves, and the red arrow corresponds to an illegal move.You want to collect as many coins as possible. Find the maximum number of coins you can collect in the discovered world if you start in the leftmost cell of the path.

输入格式

The first line of input contains a single integer $t$ ( $1 \le t \le 1000$ ) — the number of test cases. Then the descriptions of the test cases follow.

The first line of each test case contains a single integer $n$ ( $1 \le n \le 50$ ) — the length of the path.

The second line of each test case contains a string of $n$ characters, the description of the path. The character '.' denotes an empty cell, '@' denotes a cell with a coin, and '\*' denotes a cell with thorns. It is guaranteed that the first cell is empty.

输出格式

For each test case, output a single integer, the maximum number of coins you can collect.

输入输出样例

输入 #1
3
10
.@@*@.**@@
5
.@@@@
15
.@@..@***..@@@*
输出 #1
3
4
3

说明/提示

The picture for the first example is in the problem statement.

Here is the picture for the second example:

![](/uploads/acgo/image/8b8bd72ef81c4cae_52917c7d674c.jpeg)And here is the picture for the third example:

![](/uploads/acgo/image/082bda761c3fd00e_14db75179ff2.jpeg)
上一题 去做题 下一题