A12867 | Planar Perimeter
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ujan has finally cleaned up his house and now wants to decorate the interior. He decided to place a beautiful carpet that would really tie the guest room together.
He is interested in carpets that are made up of polygonal patches such that each side of a patch is either a side of another (different) patch, or is an exterior side of the whole carpet. In other words, the carpet can be represented as a planar graph, where each patch corresponds to a face of the graph, each face is a simple polygon. The perimeter of the carpet is the number of the exterior sides.
Ujan considers a carpet beautiful if it consists of $f$ patches, where the $i$ -th patch has exactly $a_i$ sides, and the perimeter is the smallest possible. Find an example of such a carpet, so that Ujan can order it!
He is interested in carpets that are made up of polygonal patches such that each side of a patch is either a side of another (different) patch, or is an exterior side of the whole carpet. In other words, the carpet can be represented as a planar graph, where each patch corresponds to a face of the graph, each face is a simple polygon. The perimeter of the carpet is the number of the exterior sides.
Ujan considers a carpet beautiful if it consists of $f$ patches, where the $i$ -th patch has exactly $a_i$ sides, and the perimeter is the smallest possible. Find an example of such a carpet, so that Ujan can order it!
输入格式
The first line of input contains a single integer $f$ ( $1 \leq f \leq 10^5$ ), the number of patches in the carpet.
The next line contains $f$ integers $a_1, \ldots, a_f$ ( $3 \leq a_i \leq 3\cdot 10^5$ ), the number of sides of the patches. The total number of the sides of the patches $a_1 + \ldots + a_f$ does not exceed $3\cdot10^5$ .
The next line contains $f$ integers $a_1, \ldots, a_f$ ( $3 \leq a_i \leq 3\cdot 10^5$ ), the number of sides of the patches. The total number of the sides of the patches $a_1 + \ldots + a_f$ does not exceed $3\cdot10^5$ .
输出格式
Output the description of the carpet as a graph.
First, output a single integer $n$ ( $3 \leq n \leq 3 \cdot 10^5$ ), the total number of vertices in your graph (the vertices must be numbered from $1$ to $n$ ).
Then output $f$ lines containing the description of the faces. The $i$ -th line should describe the $i$ -th face and contain $a_i$ distinct integers $v_{i,1}, \ldots, v_{i,a_i}$ ( $1 \leq v_{i,j} \leq n$ ), which means that the vertices $v_{i,j}$ and $v_{i,(j \bmod{a_i})+1}$ are connected by an edge for any $1 \leq j \leq a_i$ .
The graph should be planar and satisfy the restrictions described in the problem statement. Its perimeter should be the smallest possible. There should be no double edges or self-loops in the graph. The graph should be connected. Note that a solution always exists; if there are multiple solutions, output any of them.
First, output a single integer $n$ ( $3 \leq n \leq 3 \cdot 10^5$ ), the total number of vertices in your graph (the vertices must be numbered from $1$ to $n$ ).
Then output $f$ lines containing the description of the faces. The $i$ -th line should describe the $i$ -th face and contain $a_i$ distinct integers $v_{i,1}, \ldots, v_{i,a_i}$ ( $1 \leq v_{i,j} \leq n$ ), which means that the vertices $v_{i,j}$ and $v_{i,(j \bmod{a_i})+1}$ are connected by an edge for any $1 \leq j \leq a_i$ .
The graph should be planar and satisfy the restrictions described in the problem statement. Its perimeter should be the smallest possible. There should be no double edges or self-loops in the graph. The graph should be connected. Note that a solution always exists; if there are multiple solutions, output any of them.
输入输出样例
输入 #1
2 3 3
输出 #1
4 2 1 4 1 2 3
输入 #2
3 5 3 5
输出 #2
6 1 2 3 4 5 4 5 6 1 3 4 6 5
In the first sample, the two triangular faces are connected by a single edge, which results in the minimum perimeter $4$ .
The figure shows one possible configuration for the second sample. The minimum perimeter in this case is $3$ .

The figure shows one possible configuration for the second sample. The minimum perimeter in this case is $3$ .

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