A11735 | Mahmoud and Ehab and the wrong algorithm
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Mahmoud was trying to solve the vertex cover problem on trees. The problem statement is:
Given an undirected tree consisting of $n$ nodes, find the minimum number of vertices that cover all the edges. Formally, we need to find a set of vertices such that for each edge $(u,v)$ that belongs to the tree, either $u$ is in the set, or $v$ is in the set, or both are in the set. Mahmoud has found the following algorithm:
- Root the tree at node $1$ .
- Count the number of nodes at an even depth. Let it be $evenCnt$ .
- Count the number of nodes at an odd depth. Let it be $oddCnt$ .
- The answer is the minimum between $evenCnt$ and $oddCnt$ .
The depth of a node in a tree is the number of edges in the shortest path between this node and the root. The depth of the root is 0.
Ehab told Mahmoud that this algorithm is wrong, but he didn't believe because he had tested his algorithm against many trees and it worked, so Ehab asked you to find 2 trees consisting of $n$ nodes. The algorithm should find an incorrect answer for the first tree and a correct answer for the second one.
Given an undirected tree consisting of $n$ nodes, find the minimum number of vertices that cover all the edges. Formally, we need to find a set of vertices such that for each edge $(u,v)$ that belongs to the tree, either $u$ is in the set, or $v$ is in the set, or both are in the set. Mahmoud has found the following algorithm:
- Root the tree at node $1$ .
- Count the number of nodes at an even depth. Let it be $evenCnt$ .
- Count the number of nodes at an odd depth. Let it be $oddCnt$ .
- The answer is the minimum between $evenCnt$ and $oddCnt$ .
The depth of a node in a tree is the number of edges in the shortest path between this node and the root. The depth of the root is 0.
Ehab told Mahmoud that this algorithm is wrong, but he didn't believe because he had tested his algorithm against many trees and it worked, so Ehab asked you to find 2 trees consisting of $n$ nodes. The algorithm should find an incorrect answer for the first tree and a correct answer for the second one.
输入格式
The only line contains an integer $n$ $(2<=n<=10^{5})$ , the number of nodes in the desired trees.
输出格式
The output should consist of 2 independent sections, each containing a tree. The algorithm should find an incorrect answer for the tree in the first section and a correct answer for the tree in the second. If a tree doesn't exist for some section, output "-1" (without quotes) for that section only.
If the answer for a section exists, it should contain $n-1$ lines, each containing 2 space-separated integers $u$ and $v$ $(1<=u,v<=n)$ , which means that there's an undirected edge between node $u$ and node $v$ . If the given graph isn't a tree or it doesn't follow the format, you'll receive wrong answer verdict.
If there are multiple answers, you can print any of them.
If the answer for a section exists, it should contain $n-1$ lines, each containing 2 space-separated integers $u$ and $v$ $(1<=u,v<=n)$ , which means that there's an undirected edge between node $u$ and node $v$ . If the given graph isn't a tree or it doesn't follow the format, you'll receive wrong answer verdict.
If there are multiple answers, you can print any of them.
输入输出样例
输入 #1
2
输出 #1
-1 1 2
输入 #2
8
输出 #2
1 2 1 3 2 4 2 5 3 6 4 7 4 8 1 2 1 3 2 4 2 5 2 6 3 7 6 8
In the first sample, there is only 1 tree with 2 nodes (node $1$ connected to node $2$ ). The algorithm will produce a correct answer in it so we printed $-1$ in the first section, but notice that we printed this tree in the second section.
In the second sample:
In the first tree, the algorithm will find an answer with 4 nodes, while there exists an answer with 3 nodes like this:  In the second tree, the algorithm will find an answer with 3 nodes which is correct: 
In the second sample:
In the first tree, the algorithm will find an answer with 4 nodes, while there exists an answer with 3 nodes like this:  In the second tree, the algorithm will find an answer with 3 nodes which is correct: 
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted