A12197 | Maximum Diameter Graph
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Graph constructive problems are back! This time the graph you are asked to build should match the following properties.
The graph is connected if and only if there exists a path between every pair of vertices.
The diameter (aka "longest shortest path") of a connected undirected graph is the maximum number of edges in the shortest path between any pair of its vertices.
The degree of a vertex is the number of edges incident to it.
Given a sequence of $n$ integers $a_1, a_2, \dots, a_n$ construct a connected undirected graph of $n$ vertices such that:
- the graph contains no self-loops and no multiple edges;
- the degree $d_i$ of the $i$ -th vertex doesn't exceed $a_i$ (i.e. $d_i \le a_i$ );
- the diameter of the graph is maximum possible.
Output the resulting graph or report that no solution exists.
The graph is connected if and only if there exists a path between every pair of vertices.
The diameter (aka "longest shortest path") of a connected undirected graph is the maximum number of edges in the shortest path between any pair of its vertices.
The degree of a vertex is the number of edges incident to it.
Given a sequence of $n$ integers $a_1, a_2, \dots, a_n$ construct a connected undirected graph of $n$ vertices such that:
- the graph contains no self-loops and no multiple edges;
- the degree $d_i$ of the $i$ -th vertex doesn't exceed $a_i$ (i.e. $d_i \le a_i$ );
- the diameter of the graph is maximum possible.
Output the resulting graph or report that no solution exists.
输入格式
The first line contains a single integer $n$ ( $3 \le n \le 500$ ) — the number of vertices in the graph.
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le n - 1$ ) — the upper limits to vertex degrees.
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le n - 1$ ) — the upper limits to vertex degrees.
输出格式
Print "NO" if no graph can be constructed under the given conditions.
Otherwise print "YES" and the diameter of the resulting graph in the first line.
The second line should contain a single integer $m$ — the number of edges in the resulting graph.
The $i$ -th of the next $m$ lines should contain two integers $v_i, u_i$ ( $1 \le v_i, u_i \le n$ , $v_i \neq u_i$ ) — the description of the $i$ -th edge. The graph should contain no multiple edges — for each pair $(x, y)$ you output, you should output no more pairs $(x, y)$ or $(y, x)$ .
Otherwise print "YES" and the diameter of the resulting graph in the first line.
The second line should contain a single integer $m$ — the number of edges in the resulting graph.
The $i$ -th of the next $m$ lines should contain two integers $v_i, u_i$ ( $1 \le v_i, u_i \le n$ , $v_i \neq u_i$ ) — the description of the $i$ -th edge. The graph should contain no multiple edges — for each pair $(x, y)$ you output, you should output no more pairs $(x, y)$ or $(y, x)$ .
输入输出样例
输入 #1
3 2 2 2
输出 #1
YES 2 2 1 2 2 3
输入 #2
5 1 4 1 1 1
输出 #2
YES 2 4 1 2 3 2 4 2 5 2
输入 #3
3 1 1 1
输出 #3
NO
Here are the graphs for the first two example cases. Both have diameter of $2$ .
 $d_1 = 1 \le a_1 = 2$ $d_2 = 2 \le a_2 = 2$
$d_3 = 1 \le a_3 = 2$
 $d_1 = 1 \le a_1 = 1$ $d_2 = 4 \le a_2 = 4$
$d_3 = 1 \le a_3 = 1$
$d_4 = 1 \le a_4 = 1$
 $d_1 = 1 \le a_1 = 2$ $d_2 = 2 \le a_2 = 2$
$d_3 = 1 \le a_3 = 2$
 $d_1 = 1 \le a_1 = 1$ $d_2 = 4 \le a_2 = 4$
$d_3 = 1 \le a_3 = 1$
$d_4 = 1 \le a_4 = 1$
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted