CodeForce896 A. Nephren gives a riddle

来源:互联网 发布:淘宝店估值 编辑:程序博客网 时间:2024/06/07 05:35
A. Nephren gives a riddle
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
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 ≤ 105, 1 ≤ k ≤ 1018).

Output

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

Examples
input
31 11 21 111111111111
output
Wh.
input
50 691 1941 1390 471 66
output
abdef
input
104 18253 753 5304 18294 16513 1874 5844 2554 7742 474
output
Areyoubusy
Note

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

将s2分成5部分递归。

#include<bits/stdc++.h>#define ll long long#define maxn 100010#define INF 1e18using namespace  std;char s1[maxn]=" What are you doing at the end of the world? Are you busy? Will you save us?";char s2[maxn]=" What are you doing while sending \"\"? Are you busy? Will you send \"\"?";ll f[maxn],i;char ans[15];char slove(ll x,ll y){    if(y>f[x]&&x<=i)        return '.';    if(x==0)        return s1[y];    if(y<=34)//第一段        return s2[y];    if(y<=34+f[x-1]||x>i)//第二段        return slove(x-1,y-34);    if(y<=34+f[x-1]+32)//第三段        return s2[y-f[x-1]];    if(y<=34+2*f[x-1]+32)//第四段        return slove(x-1,y-34-f[x-1]-32);    return s2[y-2*f[x-1]];//第五段}int main(){    f[0]=strlen(s1)-1;    i=1;    while(1)    {        f[i]=2*f[i-1]+68;        if(f[i]>INF)            break;        i++;    }    int n;    scanf("%d",&n);    while(n--)    {        ll a,b;        scanf("%lld%lld",&a,&b);        printf("%c",slove(a,b));    }    return 0;}


原创粉丝点击