Codeforces 690F1 - Tree of Life (easy)

F1. Tree of Life (easy)
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 npoints (called vertices), some of which are connected using n - 1 line segments (edges) so that each pair of vertices is connected by apath (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!

Input

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.

Output

Print one integer – the number of lifelines in the tree.

Examples
input
4
1 2
1 3
1 4
output
3
input
5
1 2
2 3
3 4
3 5
output
4
Note

In the second sample, there are four lifelines: paths between vertices 1 and 32 and 42 and 5, and 4 and 5.

题意: 就是给你一棵树,问你有多少组长度为2的路。这里用dfs搜索就可以了

#include<cstdio>
#include<iostream>
#include<cstring>
using namespace std;
const int maxn = 10010;
struct Edge{
    int v,next;
};
Edge edge[maxn * 2];
int head[maxn];
int numedge,n,ans;
bool vis[maxn];
void init()
{
    memset(head,-1,sizeof(head));
    numedge = 0;
}
void addedge(int x,int y)
{
    edge[numedge].v = y;
    edge[numedge].next = head[x];
    head[x] = numedge++;
}
void dfs(int s,int deep)
{
        if(deep == 2)
        {
            ans++;
            return ;
        }
        if(!vis[s])
        {
            for(int i = head[s] ; i != -1 ; i = edge[i].next)
            {
                if(!vis[edge[i].v])
                {
                    vis[s] = true;
                    dfs(edge[i].v,deep+1);
                }
            }
        }
}
int main()
{
    while(~scanf("%d",&n))
    {
        init();
        for(int i = 1 ; i < n ; i++)
        {
            int a,b;
            scanf("%d%d",&a,&b);
            addedge(a,b);
            addedge(b,a);
        }
        ans = 0;
        for(int i = 1 ; i <= n ; i++)
        {
             memset(vis,false,sizeof(vis));   // 注意每次重新的节点开始搜索的都需要初始化vis数组
             dfs(i,0);
        }
        printf("%d\n",ans / 2); // 最后ans要除以2,因为他它在搜索时有重复的路
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值