310337: CF1820A. Yura's New Name

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

A. Yura's New Nametime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output

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.

Input

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.

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 $0$.

ExampleInput
7
^______^
___^_^^^_^___^
^_
^
^_^^^^^_^_^^
___^^
_
Output
5
5
1
1
0
3
2
Note

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:

^_^

Input

题意翻译

#### 题目描述 Yura 要改名字,他想取一个只包含字符 `_` 和 `^` 的名字,并满足一定条件,即只有形如 "^\_^" 和 "^^" 的连续子串可以出现在该名字中,且这些子串能够覆盖整个名字,不同子串间可以重叠。每次操作可以在名字中插入一个字符 `_` 或一个字符 `^`,求最少需要多少次操作才能使其符合要求。 #### 输入格式 第一行是测试数据组数 $T$。对于每组数据,只有一行,表示 Yura 的原名。 #### 输出格式 每组数据有一行输出,输出将 Yura 名字修正最少的操作数。

Output

题目大意:
Yura 想要更改他的名字,使其只包含字符 "_" 和 "^",同时名字中的每个字符都必须是至少一个笑脸 "^_^" 或 "^^" 的一部分。可以插入任意数量的 "_" 或 "^" 到名字中,问最少需要插入多少个字符才能使得名字满足 Yura 的要求。

输入输出数据格式:
输入:
- 第一行包含一个整数 t (1 ≤ t ≤ 100),表示测试用例的数量。
- 接下来的 t 行,每行包含一个字符串 s (1 ≤ |s| ≤ 100),由字符 "_" 和 "^" 组成,表示需要更改的名字。

输出:
- 对于每个测试用例,输出一个整数,表示需要插入的最少字符数量,使得名字满足 Yura 的要求。如果名字已经满足要求,则输出 0。

示例:
输入:
```
7
^______^
___^_^^^_^___^
^_
^
^_^^^^^_^_^^
___^^
_
```
输出:
```
5
5
1
1
0
3
2
```

注意:
- 在第一个测试用例中,可以通过添加 5 个字符得到满足条件的名字:`^_^_^_^_^_^_^_^`
- 在第三个测试用例中,可以在名字的末尾添加一个字符 "^",得到满足条件的名字:`^_^`
- 在第四个测试用例中,可以在名字的末尾添加一个字符 "^",得到满足条件的名字:`^^`
- 在第五个测试用例中,所有字符已经包含在笑脸中,所以答案为 0。
- 在第七个测试用例中,可以在名字的开头和末尾各添加一个字符 "^",得到满足条件的名字:`^_^`题目大意: Yura 想要更改他的名字,使其只包含字符 "_" 和 "^",同时名字中的每个字符都必须是至少一个笑脸 "^_^" 或 "^^" 的一部分。可以插入任意数量的 "_" 或 "^" 到名字中,问最少需要插入多少个字符才能使得名字满足 Yura 的要求。 输入输出数据格式: 输入: - 第一行包含一个整数 t (1 ≤ t ≤ 100),表示测试用例的数量。 - 接下来的 t 行,每行包含一个字符串 s (1 ≤ |s| ≤ 100),由字符 "_" 和 "^" 组成,表示需要更改的名字。 输出: - 对于每个测试用例,输出一个整数,表示需要插入的最少字符数量,使得名字满足 Yura 的要求。如果名字已经满足要求,则输出 0。 示例: 输入: ``` 7 ^______^ ___^_^^^_^___^ ^_ ^ ^_^^^^^_^_^^ ___^^ _ ``` 输出: ``` 5 5 1 1 0 3 2 ``` 注意: - 在第一个测试用例中,可以通过添加 5 个字符得到满足条件的名字:`^_^_^_^_^_^_^_^` - 在第三个测试用例中,可以在名字的末尾添加一个字符 "^",得到满足条件的名字:`^_^` - 在第四个测试用例中,可以在名字的末尾添加一个字符 "^",得到满足条件的名字:`^^` - 在第五个测试用例中,所有字符已经包含在笑脸中,所以答案为 0。 - 在第七个测试用例中,可以在名字的开头和末尾各添加一个字符 "^",得到满足条件的名字:`^_^`

加入题单

算法标签: