#Lutece0393. Tim
Tim
Migrated from Lutece 393 Tim
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
As a leader,LiuBang has many excellent generals as his subordinates,Such as Hanxin,YingBu,PengYue,JiBu,FanKuai and so on.
After LiuBang unified China, he divided his territory into n different regions and decided to send these generals out to govern them. It is common sense that one general can at most governs one region and one region can be governed by at most one general. There exist some bidirectional roads between some regions, and for any two distinct regions, at most one road exists between them. there is no self-loop, that is to say, the structure of the regions and the roads connecting them forms a simple graph. Besides, for any two adjacent regions (a road connects them)A and B, there are at most two different simple routes from A to B(Hint: simple route contains no duplicate regions or roads)
It is rumored that if there are two adjacent regions are both being governed by these generals, the two generals who govern them will plot to rebel, LiuBang could not tolerate such situation completely. But it is also believed the more generals he send out to govern these regions, the more stable his country will be.
Now LiuBang wants to know, how many generals he can send out at most while guaranteeing no rebellion would happen.
Input
The first line of the input contains an integer indicating the number of cases.
Each case contains two positive integers , (, ), in the first line, indicating the number of regions and the number of roads. then lines follow, each line contains positive integers , (, ) indicating a road connecting region and region .
Output
A single integer for each case indicating the maximum number of generals LiuBang could send out.
Samples
1
4 2
1 2
3 4
2
Note
LiuBang Can send two generals to and , but if LiuBang sends the two generals to and , they will plot to rebel as region and are adjacent.
Resources
10th SCU Programming Contest Final