A13933 | Rectangular Polyline
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
One drew a closed polyline on a plane, that consisted only of vertical and horizontal segments (parallel to the coordinate axes). The segments alternated between horizontal and vertical ones (a horizontal segment was always followed by a vertical one, and vice versa). The polyline did not contain strict self-intersections, which means that in case any two segments shared a common point, that point was an endpoint for both of them (please consult the examples in the notes section).
Unfortunately, the polyline was erased, and you only know the lengths of the horizonal and vertical segments. Please construct any polyline matching the description with such segments, or determine that it does not exist.
Unfortunately, the polyline was erased, and you only know the lengths of the horizonal and vertical segments. Please construct any polyline matching the description with such segments, or determine that it does not exist.
输入格式
The first line contains one integer $t$ ( $1 \leq t \leq 200$ ) —the number of test cases.
The first line of each test case contains one integer $h$ ( $1 \leq h \leq 1000$ ) — the number of horizontal segments. The following line contains $h$ integers $l_1, l_2, \dots, l_h$ ( $1 \leq l_i \leq 1000$ ) — lengths of the horizontal segments of the polyline, in arbitrary order.
The following line contains an integer $v$ ( $1 \leq v \leq 1000$ ) — the number of vertical segments, which is followed by a line containing $v$ integers $p_1, p_2, \dots, p_v$ ( $1 \leq p_i \leq 1000$ ) — lengths of the vertical segments of the polyline, in arbitrary order.
Test cases are separated by a blank line, and the sum of values $h + v$ over all test cases does not exceed $1000$ .
The first line of each test case contains one integer $h$ ( $1 \leq h \leq 1000$ ) — the number of horizontal segments. The following line contains $h$ integers $l_1, l_2, \dots, l_h$ ( $1 \leq l_i \leq 1000$ ) — lengths of the horizontal segments of the polyline, in arbitrary order.
The following line contains an integer $v$ ( $1 \leq v \leq 1000$ ) — the number of vertical segments, which is followed by a line containing $v$ integers $p_1, p_2, \dots, p_v$ ( $1 \leq p_i \leq 1000$ ) — lengths of the vertical segments of the polyline, in arbitrary order.
Test cases are separated by a blank line, and the sum of values $h + v$ over all test cases does not exceed $1000$ .
输出格式
For each test case output Yes, if there exists at least one polyline satisfying the requirements, or No otherwise. If it does exist, in the following $n$ lines print the coordinates of the polyline vertices, in order of the polyline traversal: the $i$ -th line should contain two integers $x_i$ and $y_i$ — coordinates of the $i$ -th vertex.
Note that, each polyline segment must be either horizontal or vertical, and the segments should alternate between horizontal and vertical. The coordinates should not exceed $10^9$ by their absolute value.
Note that, each polyline segment must be either horizontal or vertical, and the segments should alternate between horizontal and vertical. The coordinates should not exceed $10^9$ by their absolute value.
输入输出样例
输入 #1
2 2 1 1 2 1 1 2 1 2 2 3 3
输出 #1
Yes 1 0 1 1 0 1 0 0 No
输入 #2
2 4 1 1 1 1 4 1 1 1 1 3 2 1 1 3 2 1 1
输出 #2
Yes 1 0 1 1 2 1 2 2 1 2 1 1 0 1 0 0 Yes 0 -2 2 -2 2 -1 1 -1 1 0 0 0
输入 #3
2 4 1 4 1 2 4 3 4 5 12 4 1 2 3 6 2 1 3
输出 #3
Yes 2 0 2 3 3 3 3 7 4 7 4 12 0 12 0 0 No
In the first test case of the first example, the answer is Yes — for example, the following picture illustrates a square that satisfies the requirements:
In the first test case of the second example, the desired polyline also exists. Note that, the polyline contains self-intersections, but only in the endpoints:
In the second test case of the second example, the desired polyline could be like the one below:
Note that the following polyline is not a valid one, since it contains self-intersections that are not endpoints for some of the segments:

In the first test case of the second example, the desired polyline also exists. Note that, the polyline contains self-intersections, but only in the endpoints:
In the second test case of the second example, the desired polyline could be like the one below:
Note that the following polyline is not a valid one, since it contains self-intersections that are not endpoints for some of the segments:

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted