跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2931. Distance in Tree

    ID: 2937 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 5 上传者: 标签>搜索动态规划数据结构进阶难度共享题库Codeforces英文题面题目来源题面语言

Distance in Tree

题目描述

D. Distance in Tree
time limit per test
3 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

A tree is a connected graph that doesn't contain any cycles.

The distance between two vertices of a tree is the length (in edges) of the shortest path between these vertices.

You are given a tree with n vertices and a positive number k. Find the number of distinct pairs of the vertices which have a distance of exactly k between them. Note that pairs (v, u) and (u, v) are considered to be the same pair.

Input

The first line contains two integers n and k (1≤n≤50000, 1≤k≤500) − the number of vertices and the required distance between the vertices.

Next n-1 lines describe the edges as "ai bi" (without the quotes) (1≤ai,bin, aibi), where ai and bi are the vertices connected by the i-th edge. All given edges are different.

Output

Print a single integer − the number of distinct pairs of the tree's vertices which have a distance of exactly k between them.

Please do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.

Examples
Input
5 2
1 2
2 3
3 4
2 5
Output
4
Input
5 3
1 2
2 3
3 4
4 5
Output
2
Note

In the first sample the pairs of vertexes at distance 2 from each other are (1, 3), (1, 5), (3, 5) and (2, 4).


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2605 题。保留原作者与原赛事署名。