A13749 | Distance Matching
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an integer $k$ and a tree $T$ with $n$ nodes ( $n$ is even).
Let $dist(u, v)$ be the number of edges on the shortest path from node $u$ to node $v$ in $T$ .
Let us define a undirected weighted complete graph $G = (V, E)$ as following:
- $V = \{x \mid 1 \le x \le n \}$ i.e. the set of integers from $1$ to $n$
- $E = \{(u, v, w) \mid 1 \le u, v \le n, u \neq v, w = dist(u, v) \}$ i.e. there is an edge between every pair of distinct nodes, the weight being the distance between their respective nodes in $T$
Your task is simple, find a perfect matching in $G$ with total edge weight $k$ $(1 \le k \le n^2)$ .
Let $dist(u, v)$ be the number of edges on the shortest path from node $u$ to node $v$ in $T$ .
Let us define a undirected weighted complete graph $G = (V, E)$ as following:
- $V = \{x \mid 1 \le x \le n \}$ i.e. the set of integers from $1$ to $n$
- $E = \{(u, v, w) \mid 1 \le u, v \le n, u \neq v, w = dist(u, v) \}$ i.e. there is an edge between every pair of distinct nodes, the weight being the distance between their respective nodes in $T$
Your task is simple, find a perfect matching in $G$ with total edge weight $k$ $(1 \le k \le n^2)$ .
输入格式
The first line of input contains two integers $n$ , $k$ ( $2 \le n \le 100\,000$ , $n$ is even, $1 \le k \le n^2$ ): number of nodes and the total edge weight of the perfect matching you need to find.
The $i$ -th of the following $n - 1$ lines contains two integers $v_i$ , $u_i$ ( $1 \le v_i, u_i \le n$ ) denoting an edge between $v_i$ and $u_i$ in $T$ . It is guaranteed that the given graph is a tree.
The $i$ -th of the following $n - 1$ lines contains two integers $v_i$ , $u_i$ ( $1 \le v_i, u_i \le n$ ) denoting an edge between $v_i$ and $u_i$ in $T$ . It is guaranteed that the given graph is a tree.
输出格式
If there are no matchings that satisfy the above condition, output "NO" (without quotes) on a single line.
Otherwise, you should output "YES" (without quotes) on the first line of output.
You should then output $\frac{n}{2}$ lines, the $i$ -th line containing $p_i, q_i$ ( $1 \le p_i, q_i \le n$ ): the $i$ -th pair of the matching.
Otherwise, you should output "YES" (without quotes) on the first line of output.
You should then output $\frac{n}{2}$ lines, the $i$ -th line containing $p_i, q_i$ ( $1 \le p_i, q_i \le n$ ): the $i$ -th pair of the matching.
输入输出样例
输入 #1
4 2 1 2 2 3 3 4
输出 #1
YES 2 1 3 4
输入 #2
4 4 1 2 2 3 3 4
输出 #2
YES 3 1 2 4
A tree is a connected acyclic undirected graph.
A matching is set of pairwise non-adjacent edges, none of which are loops; that is, no two edges share a common vertex.
A perfect matching is a matching which matches all vertices of the graph; that is, every vertex of the graph is incident to exactly one edge of the matching.
A matching is set of pairwise non-adjacent edges, none of which are loops; that is, no two edges share a common vertex.
A perfect matching is a matching which matches all vertices of the graph; that is, every vertex of the graph is incident to exactly one edge of the matching.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted