CF527E.Data Center Drama

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The project of a data center of a Big Software Company consists of nn computers connected by mm cables. Simply speaking, each computer can be considered as a box with multiple cables going out of the box. Very Important Information is transmitted along each cable in one of the two directions. As the data center plan is not yet approved, it wasn't determined yet in which direction information will go along each cable. The cables are put so that each computer is connected with each one, perhaps through some other computers.

The person in charge of the cleaning the data center will be Claudia Ivanova, the janitor. She loves to tie cables into bundles using cable ties. For some reasons, she groups the cables sticking out of a computer into groups of two, and if it isn't possible, then she gets furious and attacks the computer with the water from the bucket.

It should also be noted that due to the specific physical characteristics of the Very Important Information, it is strictly forbidden to connect in one bundle two cables where information flows in different directions.

The management of the data center wants to determine how to send information along each cable so that Claudia Ivanova is able to group all the cables coming out of each computer into groups of two, observing the condition above. Since it may not be possible with the existing connections plan, you are allowed to add the minimum possible number of cables to the scheme, and then you need to determine the direction of the information flow for each cable (yes, sometimes data centers are designed based on the janitors' convenience...)

输入格式

The first line contains two numbers, nn and mm ( 1<=n<=1000001<=n<=100000 , 1<=m<=2000001<=m<=200000 ) — the number of computers and the number of the already present cables, respectively.

Each of the next lines contains two numbers ai,bia_{i},b_{i} ( 1<=ai,bi<=n1<=a_{i},b_{i}<=n ) — the indices of the computers connected by the ii -th cable. The data centers often have a very complex structure, so a pair of computers may have more than one pair of cables between them and some cables may connect a computer with itself.

输出格式

In the first line print a single number pp ( p>=mp>=m ) — the minimum number of cables in the final scheme.

In each of the next pp lines print a pair of numbers ci,dic_{i},d_{i} ( 1<=ci,di<=n1<=c_{i},d_{i}<=n ), describing another cable. Such entry means that information will go along a certain cable in direction from cic_{i} to did_{i} .

Among the cables you printed there should be all the cables presented in the original plan in some of two possible directions. It is guaranteed that there is a solution where pp doesn't exceed 500000500000 .

If there are several posible solutions with minimum possible value of pp , print any of them.

输入输出样例

  • 输入#1

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

    输出#1

    6
    1 2
    3 4
    1 4
    3 2
    1 3
    1 3
  • 输入#2

    3 4
    1 2
    2 3
    1 1
    3 3
    

    输出#2

    6
    2 1
    2 3
    1 1
    3 3
    3 1
    1 1
    

说明/提示

Picture for the first sample test. The tied pairs of cables are shown going out from the same point.

Picture for the second test from the statement. The added cables are drawin in bold.

Alternative answer for the second sample test:

首页