#Lutece0173. Chinese Rings

Chinese Rings

Migrated from Lutece 173 Chinese Rings

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Chinese rings, also known as the Baguenaudier, is a classical mechanical puzzles, which is aimming at removing all n rings from a horizontal loop of stiff wire, and/or put them back on.

.

The puzzle is thought to be invented by the famous Chinese general Chu-ko Liang (AD 181-234), in the 2nd century. As a present to his wife so that she would have something to do (solving it!) while he was away at the wars. By the end of the 17th century, it had become popular in many European countries. Later, the French peasants used it to lock chests and called it "time-waster", or Baguenaudier.

Marking the rings from left to right with 00 or 11 on specific bit to represent whether the corresponding ring is on the wire or not, respectively. If the Chinese Ring Puzzle with only 44 rings, the initial state is 0000. The goal is to remove all of the rings off the horizontal loop on the stiff wire ,i.e. turn the state into 1111.

.

The rules of Baguenaudier is showed below:

  1. The first ring can be moved up and down freely.
  2. Others can only move up or down if the previous ring is still on the wire AND the other rings before have been removed. e.g. ring 55 can be moved onto the wire if and only if ring 44 is on the wire(state of 00) and ring 11,22,33 are all in the state of 11.

The solution of the Chinese rings is intimately related to the theory of Gray codes. As showed in the table, in the Puzzle of four rings, the relationship between each state and the binary representation of the value of its minimum steps is exquisite and beautiful! Can you find this relationship?

This problem has several queries. Give you a state of Chinese rings, steps , please calculate binary representation of the corresponding minimum step.

Input

The first line is a integer TT (T100T\leq 100), the number of test cases, followed TT lines. Each line consists of a binary number, which is not longer than 2020 bits. And there is no leading 00s.

The number of rings equals to the length of the binary number.

Output

For each test case, output the required binary representation in one line.

Samples

3
10
1011
1010110
11
1101
1100100

Resources

selbyarmy & zhymaoiing