Metro Scheme

题意翻译

给定 $n$ 个点 $m$ 条边的仙人球(每个点至多属于一个简单环),要求用简单路径和简单环恰好覆盖所有边,最小化简单路径和简单环的总数(无重边和自环)。 输出两个数,分别为最小的总数和最大的总数 $1 \leq n \leq 10^5$

题目描述

Berland is very concerned with privacy, so almost all plans and blueprints are secret. However, a spy of the neighboring state managed to steal the Bertown subway scheme. The Bertown Subway has $ n $ stations, numbered from $ 1 $ to $ n $ , and $ m $ bidirectional tunnels connecting them. All Bertown Subway consists of lines. To be more precise, there are two types of lines: circular and radial. A radial line is a sequence of stations $ v_{1},...,v_{k} $ $ (k>1) $ , where stations $ v_{i} $ and $ v_{i+1} $ $ (i<k) $ are connected by a tunnel and no station occurs in the line more than once ( $ v_{i}≠v_{j} $ for $ i≠j $ ). A loop line is a series of stations, $ v_{1},...,v_{k} $ $ (k>2) $ , where stations $ v_{i} $ и $ v_{i+1} $ are connected by a tunnel. In addition, stations $ v_{1} $ and $ v_{k} $ are also connected by a tunnel. No station is occurs in the loop line more than once. Note that a single station can be passed by any number of lines. According to Berland standards, there can't be more than one tunnel between two stations and each tunnel belongs to exactly one line. Naturally, each line has at least one tunnel. Between any two stations there is the way along the subway tunnels. In addition, in terms of graph theory, a subway is a vertex cactus: if we consider the subway as a graph in which the stations are the vertexes and the edges are tunnels, then each vertex lies on no more than one simple cycle. Unfortunately, scheme, stolen by the spy, had only the stations and the tunnels. It was impossible to determine to which line every tunnel corresponds. But to sabotage successfully, the spy needs to know what minimum and maximum number of lines may be in the Bertown subway. Help him!

输入输出格式

输入格式


The first line contains two integers $ n $ and $ m $ ( $ 1<=n<=10^{5} $ , $ 0<=m<=3·10^{5} $ ) — the number of stations and the number of tunnels, correspondingly. Each of the next $ m $ lines contain two integers — the numbers of stations connected by the corresponding tunnel. The stations are numbered with integers from $ 1 $ to $ n $ . It is guaranteed that the graph that corresponds to the subway has no multiple edges or loops, it is connected and it is a vertex cactus.

输出格式


Print two numbers — the minimum and maximum number of lines correspondingly.

输入输出样例

输入样例 #1

3 3
1 2
2 3
3 1

输出样例 #1

1 3

输入样例 #2

8 8
1 2
2 3
3 4
4 5
6 4
4 7
7 2
2 8

输出样例 #2

2 8

输入样例 #3

6 6
1 2
2 3
2 5
5 6
3 4
3 5

输出样例 #3

3 6

说明

The subway scheme with minimum possible number of lines for the second sample is: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF191D/33de82cb25d77ae6de6c4523c2b2ee084091b6ba.png)