CF501C.Misha and Forest

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Let's define a forest as a non-directed acyclic graph (also without loops and parallel edges). One day Misha played with the forest consisting of nn vertices. For each vertex vv from 00 to n1n-1 he wrote down two integers, degreevdegree_{v} and svs_{v} , were the first integer is the number of vertices adjacent to vertex vv , and the second integer is the XOR sum of the numbers of vertices adjacent to vv (if there were no adjacent vertices, he wrote down 00 ).

Next day Misha couldn't remember what graph he initially had. Misha has values degreevdegree_{v} and svs_{v} left, though. Help him find the number of edges and the edges of the initial graph. It is guaranteed that there exists a forest that corresponds to the numbers written by Misha.

输入格式

The first line contains integer nn ( 1<=n<=2161<=n<=2^{16} ), the number of vertices in the graph.

The ii -th of the next lines contains numbers degreeidegree_{i} and sis_{i} ( 0<=degreei<=n10<=degree_{i}<=n-1 , 0<=s_{i}<2^{16} ), separated by a space.

输出格式

In the first line print number mm , the number of edges of the graph.

Next print mm lines, each containing two distinct numbers, aa and bb ( 0<=a<=n10<=a<=n-1 , 0<=b<=n10<=b<=n-1 ), corresponding to edge (a,b)(a,b) .

Edges can be printed in any order; vertices of the edge can also be printed in any order.

输入输出样例

  • 输入#1

    3
    2 3
    1 0
    1 0
    

    输出#1

    2
    1 0
    2 0
    
  • 输入#2

    2
    1 1
    1 0
    

    输出#2

    1
    0 1
    

说明/提示

The XOR sum of numbers is the result of bitwise adding numbers modulo 22 . This operation exists in many modern programming languages. For example, in languages C++, Java and Python it is represented as "^", and in Pascal — as "xor".

首页