Codeforces Round #285 (Div. 2) C. Misha and Forest

time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 n vertices. For each vertex v from 0 to n - 1he wrote down two integers, degreev and sv, were the first integer is the number of vertices adjacent to vertex v, and the second integer is the XOR sum of the numbers of vertices adjacent to v (if there were no adjacent vertices, he wrote down 0).

Next day Misha couldn't remember what graph he initially had. Misha has values degreev andsv 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.

Input

The first line contains integer n (1 ≤ n ≤ 216), the number of vertices in the graph.

The i-th of the next lines contains numbers degreei and si (0 ≤ degreei ≤ n - 10 ≤ si < 216), separated by a space.

Output

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

Next print m lines, each containing two distinct numbers, a and b (0 ≤ a ≤ n - 10 ≤ b ≤ n - 1), corresponding to edge (a, b).

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

Sample test(s)
input
3
2 3
1 0
1 0
output
2
1 0
2 0
input
2
1 1
1 0
output
1
0 1
Note

The XOR sum of numbers is the result of bitwise adding numbers modulo 2. 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".

题意:有一无环森林,N个顶点;给出每个顶点的度,和与之相连所有顶点号的异或和; 输出所有遍。

题解:叶子节点的异或值是他的父节点,依次去除叶子并维持余下的森林个点的的度与异或和;

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <cctype>
#include <queue>
#include <vector>
#define INF 0x7fffffff
#define eps (1e-9)
#define lenq 2<<16
#define maxn 199999999
#define clearto(s,x) memset(s,x,sizeof(s))
using namespace std;

int n, m, tot=0;
int deg[1025400],xors[102400];
int edge[2][1025400];
queue<int> que;

int main()
{
    //freopen("E:\DATA.txt","r",stdin);
    //int TT=1,tt=1;     scanf("%d",&TT);
    int i=0,j=0,k=0,t=0;
    scanf("%d",&n);
    for(i=0;i<n;i++){
        scanf("%d %d",°[i],&xors[i]);
        if(deg[i]==1)  que.push(i);
    }
    while(!que.empty())
    {
        int chl=que.front();   que.pop();
        if(deg[chl]==0)        continue;    //考虑最后一个可能出现进队后,度变零

        int fa=xors[chl];      //对于只有一个顶点与它相邻的叶子,xors就是邻点
        edge[0][tot]=chl;
        edge[1][tot]=fa;       tot++;
                                            //去除这片叶子并维持余下森林的 deg和xors
        deg[fa]--;   xors[fa] ^=chl;        // XOR:a^b=c 则a^c=b  b^c=a;
                                            //由于old^chl =new ;即有 new^chl = old ;
        if(deg[fa]==1)    que.push(fa);
    }
    printf("%d\n",tot);
    for(i=0;i<tot;i++){
        printf("%d %d\n",edge[0][i],edge[1][i]);
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值