CF1820A.Yura's New Name

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 ss 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 ss . Then all such occurrences must cover the whole string ss , possibly with intersections. For example, in the string "^___^__" the characters at positions 3,4,9,103,4,9,10 and 1111 are not contained inside any smileys, and the other characters at positions 1,2,5,6,71,2,5,6,7 and 88 are contained inside smileys.

In one operation Jura can insert one of the characters "_" and "^" into his name ss (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 tt ( 1t1001 \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 ss ( 1s1001 \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 00 .

输入输出样例

  • 输入#1

    7
    ^______^
    ___^_^^^_^___^
    ^_
    ^
    ^_^^^^^_^_^^
    ___^^
    _

    输出#1

    5
    5
    1
    1
    0
    3
    2

说明/提示

In the first test case, you can get the following name by adding 55 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 00 .

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:

_

首页