CF1196E.Connected Component on a Chessboard
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given two integers b and w . You have a chessboard of size 109×109 with the top left cell at (1;1) , the cell (1;1) is painted white.
Your task is to find a connected component on this chessboard that contains exactly b black cells and exactly w white cells. Two cells are called connected if they share a side (i.e. for the cell (x,y) there are at most four connected cells: (x−1,y),(x+1,y),(x,y−1),(x,y+1) ). A set of cells is called a connected component if for every pair of cells C1 and C2 from this set, there exists a sequence of cells c1 , c2 , ..., ck such that c1=C1 , ck=C2 , all ci from 1 to k are belong to this set of cells and for every i∈[1,k−1] , cells ci and ci+1 are connected.
Obviously, it can be impossible to find such component. In this case print "NO". Otherwise, print "YES" and any suitable connected component.
You have to answer q independent queries.
输入格式
The first line of the input contains one integer q ( 1≤q≤105 ) — the number of queries. Then q queries follow.
The only line of the query contains two integers b and w ( 1≤b,w≤105 ) — the number of black cells required and the number of white cells required.
It is guaranteed that the sum of numbers of cells does not exceed 2⋅105 ( ∑w+∑b≤2⋅105 ).
输出格式
For each query, print the answer to it.
If it is impossible to find the required component, print "NO" on the first line.
Otherwise, print "YES" on the first line. In the next b+w lines print coordinates of cells of your component in any order. There should be exactly b black cells and w white cells in your answer. The printed component should be connected.
If there are several answers, you can print any. All coordinates in the answer should be in the range [1;109] .
输入输出样例
输入#1
3 1 1 1 4 2 5
输出#1
YES 2 2 1 2 YES 2 3 1 3 3 3 2 2 2 4 YES 2 3 2 4 2 5 1 3 1 5 3 3 3 5