题库练习 Yet Another String Game
← 上一题 下一题 →

A14159 | Yet Another String Game

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Homer has two friends Alice and Bob. Both of them are string fans.

One day, Alice and Bob decide to play a game on a string $s = s_1 s_2 \dots s_n$ of length $n$ consisting of lowercase English letters. They move in turns alternatively and Alice makes the first move.

In a move, a player must choose an index $i$ ( $1 \leq i \leq n$ ) that has not been chosen before, and change $s_i$ to any other lowercase English letter $c$ that $c \neq s_i$ .

When all indices have been chosen, the game ends.

The goal of Alice is to make the final string lexicographically as small as possible, while the goal of Bob is to make the final string lexicographically as large as possible. Both of them are game experts, so they always play games optimally. Homer is not a game expert, so he wonders what the final string will be.

A string $a$ is lexicographically smaller than a string $b$ if and only if one of the following holds:

- $a$ is a prefix of $b$ , but $a \ne b$ ;
- in the first position where $a$ and $b$ differ, the string $a$ has a letter that appears earlier in the alphabet than the corresponding letter in $b$ .

输入格式

Each test contains multiple test cases. The first line contains $t$ ( $1 \le t \le 1000$ ) — the number of test cases. Description of the test cases follows.

The only line of each test case contains a single string $s$ ( $1 \leq |s| \leq 50$ ) consisting of lowercase English letters.

输出格式

For each test case, print the final string in a single line.

输入输出样例

输入 #1
3
a
bbbb
az
输出 #1
b
azaz
by
C++ 编辑器
输入
输出