A10559 | Tree of Life (easy)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Heidi has finally found the mythical Tree of Life – a legendary combinatorial structure which is said to contain a prophecy crucially needed to defeat the undead armies.
On the surface, the Tree of Life is just a regular undirected tree well-known from computer science. This means that it is a collection of $n$ points (called vertices), some of which are connected using $n-1$ line segments (edges) so that each pair of vertices is connected by a path (a sequence of one or more edges).
To decipher the prophecy, Heidi needs to perform a number of steps. The first is counting the number of lifelines in the tree – these are paths of length $2$ , i.e., consisting of two edges. Help her!
On the surface, the Tree of Life is just a regular undirected tree well-known from computer science. This means that it is a collection of $n$ points (called vertices), some of which are connected using $n-1$ line segments (edges) so that each pair of vertices is connected by a path (a sequence of one or more edges).
To decipher the prophecy, Heidi needs to perform a number of steps. The first is counting the number of lifelines in the tree – these are paths of length $2$ , i.e., consisting of two edges. Help her!
输入格式
The first line of the input contains a single integer $n$ – the number of vertices in the tree ( $1<=n<=10000$ ). The vertices are labeled with the numbers from 1 to $n$ . Then $n-1$ lines follow, each describing one edge using two space-separated numbers $a b$ – the labels of the vertices connected by the edge ( $1<=a<b<=n$ ). It is guaranteed that the input represents a tree.
输出格式
Print one integer – the number of lifelines in the tree.
输入输出样例
输入 #1
4 1 2 1 3 1 4
输出 #1
3
输入 #2
5 1 2 2 3 3 4 3 5
输出 #2
4
In the second sample, there are four lifelines: paths between vertices $1$ and $3$ , $2$ and $4$ , $2$ and $5$ , and $4$ and $5$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted