#Lutece0461. Network
Network
Migrated from Lutece 461 Network
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Yixght is a manager of the company called SzqNetwork(SN). Now she's very worried because she has just received a bad news which denotes that DxtNetwork(DN), the SN's business rival, intents to attack the network of SN. More unfortunately, the original network of SN is so weak that we can just treat it as a tree. Formally, there are nodes in SN's network, bidirectional channels to connect the nodes, and there always exists a route from any node to another. In order to protect the network from the attack, Yixght builds new bidirectional channels between some of the nodes.
As the DN's best hacker, you can exactly destory two channels, one in the original network and the other among the new channels. Now your higher-up wants to know how many ways you can divide the network of SN into at least two parts.
Input
In the first line of input there is an integer , meaning there is test cases.
For each test case, The first line of the input file contains two integers: (), () — the number of the nodes and the number of the new channels.
Following lines represent the channels in the original network of SN, each pair denote that there is a channel between node and node .
Following lines represent the new channels in the network, each pair denote that a new channel between node and node is added to the network of SN.
Output
For each test case, first output Case #C:
, where is the number of test case, from to . Then output a single integer — the number of ways to divide the network into at least two parts.
Samples
1
4 1
1 2
2 3
1 4
3 4
Case #1: 3
Resources
POJ Monthly--2007.10.06, Yang Mu