当前位置:   article > 正文

Codeforces Round #575 (Div. 3) E Connected Component on a Chessboard_#575div3econnected component on a chessboard

#575div3econnected component on a chessboard

Connected Component on a Chessboard

time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output

problem

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.

Input

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).

Output

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].

Example

input

3
1 1
1 4
2 5
  • 1
  • 2
  • 3
  • 4

output

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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

代码

#include <bits/stdc++.h> 
using namespace std;
 
int n, b, w, ok;
 
int main () {
	cin >> n;
	while (n--) 
	{
        ok = 0;
	    cin >> b >> w;
	    if (b <= w) ok = 1;
	    	else swap (b, w);
	    if (w > (b-1)*3+4) {puts("NO"); continue;}
	    puts ("YES");
	    int k = 2+ok;
	    for (int i = 0; i < b; i++) {cout << "2 " << k  << endl; k+= 2;}
	    k--;
	    for (int i = 0; i < b+1 && w > 0; i++) {cout << "2 " << k  << endl; k-= 2; w--;}
	    k = 2+ok;
	    for (int i = 0; i < b && w > 0; i++) {cout << "1 " << k  << endl; k+= 2; w--;}
	    k = 2+ok;
	    for (int i = 0; i < b && w > 0; i++) {cout << "3 " << k << endl; k+= 2; w--;}
	}
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/71444
推荐阅读
相关标签
  

闽ICP备14008679号