题库练习 Olya and magical square
← 上一题 下一题 →

A12211 | Olya and magical square

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

题目描述

Recently, Olya received a magical square with the size of $2^n\times 2^n$ .

It seems to her sister that one square is boring. Therefore, she asked Olya to perform exactly $k$ splitting operations.

A Splitting operation is an operation during which Olya takes a square with side $a$ and cuts it into 4 equal squares with side $\dfrac{a}{2}$ . If the side of the square is equal to $1$ , then it is impossible to apply a splitting operation to it (see examples for better understanding).

Olya is happy to fulfill her sister's request, but she also wants the condition of Olya's happiness to be satisfied after all operations.

The condition of Olya's happiness will be satisfied if the following statement is fulfilled:

Let the length of the side of the lower left square be equal to $a$ , then the length of the side of the right upper square should also be equal to $a$ . There should also be a path between them that consists only of squares with the side of length $a$ . All consecutive squares on a path should have a common side.

Obviously, as long as we have one square, these conditions are met. So Olya is ready to fulfill her sister's request only under the condition that she is satisfied too. Tell her: is it possible to perform exactly $k$ splitting operations in a certain order so that the condition of Olya's happiness is satisfied? If it is possible, tell also the size of the side of squares of which the path from the lower left square to the upper right one will consist.

输入格式

The first line contains one integer $t$ ( $1 \le t \le 10^3$ ) — the number of tests.

Each of the following $t$ lines contains two integers $n_i$ and $k_i$ ( $1 \le n_i \le 10^9, 1 \le k_i \le 10^{18}$ ) — the description of the $i$ -th test, which means that initially Olya's square has size of $2^{n_i}\times 2^{n_i}$ and Olya's sister asks her to do exactly $k_i$ splitting operations.

输出格式

Print $t$ lines, where in the $i$ -th line you should output "YES" if it is possible to perform $k_i$ splitting operations in the $i$ -th test in such a way that the condition of Olya's happiness is satisfied or print "NO" otherwise. If you printed "YES", then also print the $log_2$ of the length of the side of the squares through space, along which you can build a path from the lower left square to the upper right one.

You can output each letter in any case (lower or upper).

If there are multiple answers, print any.

输入输出样例

输入 #1
3
1 1
2 2
2 12
输出 #1
YES 0
YES 1
NO
C++ 编辑器
输入
输出