CF1733E.Conveyor

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There is a conveyor with 120120 rows and 120120 columns. Each row and column is numbered from 00 to 119119 , and the cell in ii -th row and jj -th column is denoted as (i,j)(i, j) . The top leftmost cell is (0,0)(0, 0) . Each cell has a belt, and all belts are initially facing to the right.

Initially, a slime ball is on the belt of (0,0)(0, 0) , and other belts are empty. Every second, the state of the conveyor changes as follows:

  • All slime balls on the conveyor move one cell in the direction of the belt at the same time. If there is no cell in the moved position, the slime gets out of the conveyor, and if two slime balls move to the same cell, they merge into one.
  • All belts with slime ball in the previous second change direction at the same time: belts facing to the right become facing to the down, and vice versa.
  • A new slime ball is placed on cell (0,0)(0, 0) .

There are qq queries, each being three integers tt , xx , and yy . You have to find out if there is a slime at the cell (x,y)(x, y) after tt seconds from the start. Can you do it?

输入格式

The first line contains one integer qq ( 1q1041 \le q \le 10^4 ) — the number of queries.

The only line of each query contains three integers tt , xx , and yy ( 0t10180 \le t \le 10^{18} , 0x,y<1200 \le x, y < 120 ).

输出格式

Print the answer for each test case, one per line. If there is a slime ball in the cell (x,y)(x, y) after tt seconds from the initial state, print "YES". Otherwise, print "NO".

输入输出样例

  • 输入#1

    6
    1 1 0
    5 1 3
    0 0 0
    2 4 5
    2 0 2
    1547748756 100 111

    输出#1

    NO
    YES
    YES
    NO
    YES
    YES

说明/提示

The state of conveyor with t=0t = 0 . Red arrow represents the direction of each belt, and blue figure represents slime.

The state of conveyor with t=1t = 1 .

The state of conveyor with t=2t = 2 .

首页