欢迎来到起遇信息学
起遇信息学正处于上线筹建阶段,以下功能已全部开放免费体验: ✅ 完整题库浏览与代码提交评测(C / C++ / Python / Java 等) ✅ 入门到进阶的系列课程试读、作业与考试 ✅ AI 提示、AI 作业分析等智能助教功能 ✅ 赛事模拟与个人能力报告 ✅ 邮箱注册开放 ⏳ 付费课程订阅与微信/支付宝支付通道 ⏳ 手机号登录,微信扫码登录、微信公众号绑定 使用中如遇任何问题,欢迎通过页面底部 **"联系我们"** 与我们沟通。
CF1820A.Yura's New Name
Yura's New Name
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 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 . Then all such occurrences must cover the whole string , possibly with intersections. For example, in the string "^^\_\_^\_^^\_\_^" the characters at positions and are not contained inside any smileys, and the other characters at positions and are contained inside smileys.
In one operation Jura can insert one of the characters "\_" and "^" into his name (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.
Input
Each test consists of multiple test cases. The first line contains a single integer () —the number of test cases. The description of test cases follows.
The first and only line of each test case contains a single string (), consisting of characters "\_" and "^", — the name to change.
Output
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 .
Note
In the first test case, you can get the following name by adding 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 .
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:
^\_^
Samples
7
^______^
___^_^^^_^___^
^_
^
^_^^^^^_^_^^
___^^
_
5
5
1
1
0
3
2
在线编程 IDE
建议全屏模式获得最佳体验
| 进入全屏编程 | Alt+E |
| 递交评测 | Ctrl+Enter |
| 注释/取消注释 | Ctrl+/ |
| 缩放字体 | Ctrl+滚轮 |