You are given a 4 × 4 grid, which consists of 15 number cells and an empty cell. All numbers are unique and ranged from 1 to 15. In this board, the cells which are adjacent with the empty cell can move to the empty cell. Your task is to make the input grid to the target grid shown in the figure below. In the following example (sample input), you can get the target grid in two moves.
输入解释
The first line contains an integer T (1 <= T <= 10^5) denoting the number of test cases. Each test case consists of four lines each containing four space-separated integers, denoting the input grid. 0 indicates the empty cell.
输出解释
For each test case, you have to print the answer in one line. If you can’t get the target grid within 120 moves, then print 'No', else print 'Yes'.