【dfs】cf 897C Nephren gives a riddle

C. Nephren gives a riddle

What are you doing at the end of the world? Are you busy? Will you save us?

Nephren is playing a game with little leprechauns.

She gives them an infinite array of strings, f0... ∞.

f0 is "What are you doing at the end of the world? Are you busy? Will you save us?".

She wants to let more people know about it, so she defines fi =  "What are you doing while sending "fi - 1"? Are you busy? Will you send "fi - 1"?" for all i ≥ 1.

For example, f1 is

"What are you doing while sending "What are you doing at the end of the world? Are you busy? Will you save us?"? Are you busy? Will you send "What are you doing at the end of the world? Are you busy? Will you save us?"?". Note that the quotes in the very beginning and in the very end are for clarity and are not a part of f1.

It can be seen that the characters in fi are letters, question marks, (possibly) quotation marks and spaces.

Nephren will ask the little leprechauns q times. Each time she will let them find the k-th character of fn. The characters are indexed starting from 1. If fn consists of less than k characters, output '.' (without quotes).

Can you answer her queries?

Input

The first line contains one integer q (1 ≤ q ≤ 10) — the number of Nephren's questions.

Each of the next q lines describes Nephren's question and contains two integers n and k (0 ≤ n ≤ 10^5, 1 ≤ k ≤ 10^18).

Output

One line containing q characters. The i-th character in it should be the answer for the i-th query.

Examples

input

3
1 1
1 2
1 111111111111

output

Wh.

input

5
0 69
1 194
1 139
0 47
1 66

output

abdef

input

10
4 1825
3 75
3 530
4 1829
4 1651
3 187
4 584
4 255
4 774
2 474

output

Areyoubusy

Note

For the first two examples, refer to f0 and f1 given in the legend.


这个题目的意思为f0=“What are you doing at the end of the world? Are you busy? Will you save us?” ,fn=“What are you doing while sending "fi - 1"? Are you busy? Will you send "fi - 1"? ”。fn嵌套两次fn-1;求出 fn 中第 q 个字符是多少。

首先先将 fn 分为5 端。

What are you doing while sending "       (length = “ 34”)

fi - 1

"? Are you busy? Will you send "            (length = “32” )

fi - 1

"?

fn = strlen(fn-1) * 2 + 34  +32 +2;通过深搜来寻找到最终结果。

这个题目最大的问题是,当n > 53,数值就会爆掉。所以将 > 53 之后的数字 ,给磨掉。

#include <bits/stdc++.h>
using namespace std;
typedef long long LL;

const LL inf = 1e18;
char a[] = "What are you doing at the end of the world? Are you busy? Will you save us?";
char b[] = "What are you doing while sending \"\"? Are you busy? Will you send \"\"?";

LL len[100001];
char ans[20];

char dfs(int n,LL k)
{
    if(n == 0)
    {
        if(k < len[0])
			return a[k];
        else return '.';
    }
    if(k < 34)
		return b[k];
    k -= 34;
    if(k < len[n-1]) 
		return dfs(n-1,k);
    k -= len[n-1];
    if(k < 32)
		return b[k+34];
    k -= 32;
    if(k < len[n-1]) 
		return dfs(n-1,k);
    k -= len[n-1];
    if(k < 2)
		return b[k+66];
    return '.';
}

int main()
{
    len[0] = strlen(a);
    LL l = strlen(b);
    for(int i = 1; i <= 53; ++i)
    {
        len[i] = len[i-1]*2 + l;
    }
    for(int i = 54; i <= 100000; ++i)
		len[i] = len[53];
    int n;
    LL k;
    int q;
    scanf("%d",&q);
    for(int i = 0; i < q; ++i)
    {
        scanf("%d %lld",&n,&k);
        k--;
        ans[i] = dfs(n,k);
    }
    ans[q] = 0;
    puts(ans);
    return 0;
}

 

上一篇:TPO-21 C2 Which elective courses to take


下一篇:位图索引:原理(BitMap index)