A11308 | Thorns and Coins
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
 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.
 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.
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:
And here is the picture for the third example:

Here is the picture for the second example:
And here is the picture for the third example:

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted