A12866 | Connected Component on a Chessboard
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given two integers $b$ and $w$ . You have a chessboard of size $10^9 \times 10^9$ 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 $C_1$ and $C_2$ from this set, there exists a sequence of cells $c_1$ , $c_2$ , ..., $c_k$ such that $c_1 = C_1$ , $c_k = C_2$ , all $c_i$ from $1$ to $k$ are belong to this set of cells and for every $i \in [1, k - 1]$ , cells $c_i$ and $c_{i + 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.
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 $C_1$ and $C_2$ from this set, there exists a sequence of cells $c_1$ , $c_2$ , ..., $c_k$ such that $c_1 = C_1$ , $c_k = C_2$ , all $c_i$ from $1$ to $k$ are belong to this set of cells and for every $i \in [1, k - 1]$ , cells $c_i$ and $c_{i + 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 \le q \le 10^5$ ) — the number of queries. Then $q$ queries follow.
The only line of the query contains two integers $b$ and $w$ ( $1 \le b, w \le 10^5$ ) — 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 \cdot 10^5$ ( $\sum w + \sum b \le 2 \cdot 10^5$ ).
The only line of the query contains two integers $b$ and $w$ ( $1 \le b, w \le 10^5$ ) — 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 \cdot 10^5$ ( $\sum w + \sum b \le 2 \cdot 10^5$ ).
输出格式
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; 10^9]$ .
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; 10^9]$ .
输入输出样例
输入 #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
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted