A15943 | Yura's New Name
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
After holding one team contest, boy Yura got very tired and wanted to change his life and move to Japan. In honor of such a change, Yura changed his name to something nice.
Fascinated by this idea he already thought up a name $s$ consisting only of characters "\_" and "^". But there's a problem — Yura likes smiley faces "^\_^" and "^^". Therefore any character of the name must be a part of at least one such smiley. Note that only the consecutive characters of the name can be a smiley face.
More formally, consider all occurrences of the strings "^\_^" and "^^" in the string $s$ . Then all such occurrences must cover the whole string $s$ , possibly with intersections. For example, in the string "^^\_\_^\_^^\_\_^" the characters at positions $3,4,9,10$ and $11$ are not contained inside any smileys, and the other characters at positions $1,2,5,6,7$ and $8$ are contained inside smileys.
In one operation Jura can insert one of the characters "\_" and "^" into his name $s$ (you can insert it at any position in the string). He asks you to tell him the minimum number of operations you need to do to make the name fit Yura's criteria.
Fascinated by this idea he already thought up a name $s$ consisting only of characters "\_" and "^". But there's a problem — Yura likes smiley faces "^\_^" and "^^". Therefore any character of the name must be a part of at least one such smiley. Note that only the consecutive characters of the name can be a smiley face.
More formally, consider all occurrences of the strings "^\_^" and "^^" in the string $s$ . Then all such occurrences must cover the whole string $s$ , possibly with intersections. For example, in the string "^^\_\_^\_^^\_\_^" the characters at positions $3,4,9,10$ and $11$ are not contained inside any smileys, and the other characters at positions $1,2,5,6,7$ and $8$ are contained inside smileys.
In one operation Jura can insert one of the characters "\_" and "^" into his name $s$ (you can insert it at any position in the string). He asks you to tell him the minimum number of operations you need to do to make the name fit Yura's criteria.
输入格式
Each test consists of multiple test cases. The first line contains a single integer $t$ ( $1 \le t \le 100$ ) —the number of test cases. The description of test cases follows.
The first and only line of each test case contains a single string $s$ ( $1 \leq |s| \leq 100$ ), consisting of characters "\_" and "^", — the name to change.
The first and only line of each test case contains a single string $s$ ( $1 \leq |s| \leq 100$ ), consisting of characters "\_" and "^", — the name to change.
输出格式
For each test case, output a single integer — the minimum number of characters you need to add to the name to make it fit for Yura. If you don't need to change anything in the name, print $0$ .
输入输出样例
输入 #1
7 ^______^ ___^_^^^_^___^ ^_ ^ ^_^^^^^_^_^^ ___^^ _
输出 #1
5 5 1 1 0 3 2
In the first test case, you can get the following name by adding $5$ characters:
^\_^\_^\_^\_^\_^\_^
In the third test case, we can add one character "^" to the end of the name, then we get the name:
^\_^
In the fourth test case, we can add one character "^" to the end of the name, then we get the name:
^^
In the fifth test case, all of the characters are already contained in smiley faces, so the answer is $0$ .
In the seventh test case, you can add one character "^" at the beginning of the name and one character "^" at the end of the name, then you get the name:
^\_^
^\_^\_^\_^\_^\_^\_^
In the third test case, we can add one character "^" to the end of the name, then we get the name:
^\_^
In the fourth test case, we can add one character "^" to the end of the name, then we get the name:
^^
In the fifth test case, all of the characters are already contained in smiley faces, so the answer is $0$ .
In the seventh test case, you can add one character "^" at the beginning of the name and one character "^" at the end of the name, then you get the name:
^\_^
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted