لینک‌های مفید برای شرکت در مسابقه:

توجه کنید که سوالات مسابقه ترتیب خاصی ندارند.

G: Hat



In the wizarding world of security, there are two kinds of researcher: the idealist arranging hat and the mercenary deranging hat.

As we learned last year, an arranging hat carefully sorts out any list of letters given to it into ascending order. However, a deranging hat performs the exact opposite function: putting a sorted string of letters back into its original order.

The tool of choice for today’s discerning headwear is a sorting network: a sequence of instructions represented by a list of pairs of numbers AiA_i and BiB_i, meaning that if at step ii the AA-th item in the string is not already smaller than the BB-th item, they should be swapped immediately.

Given a specific word WW, output a sorting network that the deranging hat can use to form the word from its original sorted letters.

Input🔗

One line containing one string of lowercase Latin letters (‘a’-‘z’), SS, containing at most 10001000 characters.

Output🔗

Output at most 10000 lines, each containing two integers AiA_i and BiB_i (1Ai,BiS1 \le A_i, B_i \le |S| ) giving the ii-th operation to perform.

Sample Input 1🔗

bab
Plain text

Sample Output 1🔗

2 1
Plain text

Sample Input 2🔗

dude
Plain text

Sample Output 2🔗

4 3
3 2
Plain text
ارسال پاسخ برای این سؤال
در حال حاضر شما دسترسی ندارید.