CF191D.Metro Scheme

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn stations, numbered from 11 to nn , and mm 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 v1,...,vkv_{1},...,v_{k} (k>1) , where stations viv_{i} and vi+1v_{i+1} (i<k) are connected by a tunnel and no station occurs in the line more than once ( vivjv_{i}≠v_{j} for iji≠j ).

A loop line is a series of stations, v1,...,vkv_{1},...,v_{k} (k>2) , where stations viv_{i} и vi+1v_{i+1} are connected by a tunnel. In addition, stations v1v_{1} and vkv_{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 nn and mm ( 1<=n<=1051<=n<=10^{5} , 0<=m<=31050<=m<=3·10^{5} ) — the number of stations and the number of tunnels, correspondingly.

Each of the next mm lines contain two integers — the numbers of stations connected by the corresponding tunnel. The stations are numbered with integers from 11 to nn .

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:

首页