CF260D.Black and White Tree
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The board has got a painted tree graph, consisting of n nodes. Let us remind you that a non-directed graph is called a tree if it is connected and doesn't contain any cycles.
Each node of the graph is painted black or white in such a manner that there aren't two nodes of the same color, connected by an edge. Each edge contains its value written on it as a non-negative integer.
A bad boy Vasya came up to the board and wrote number sv near each node v — the sum of values of all edges that are incident to this node. Then Vasya removed the edges and their values from the board.
Your task is to restore the original tree by the node colors and numbers sv .
输入格式
The first line of the input contains a single integer n ( 2<=n<=105 ) — the number of nodes in the tree. Next n lines contain pairs of space-separated integers ci , si ( 0<=ci<=1 , 0<=si<=109 ), where ci stands for the color of the i -th vertex (0 is for white, 1 is for black), and si represents the sum of values of the edges that are incident to the i -th vertex of the tree that is painted on the board.
输出格式
Print the description of n−1 edges of the tree graph. Each description is a group of three integers vi , ui , wi ( 1<=vi,ui<=n , vi=ui , 0<=wi<=109 ), where vi and ui — are the numbers of the nodes that are connected by the i -th edge, and wi is its value. Note that the following condition must fulfill cvi=cui .
It is guaranteed that for any input data there exists at least one graph that meets these data. If there are multiple solutions, print any of them. You are allowed to print the edges in any order. As you print the numbers, separate them with spaces.
输入输出样例
输入#1
3 1 3 1 2 0 5
输出#1
3 1 3 3 2 2
输入#2
6 1 0 0 3 1 8 0 2 0 3 0 0
输出#2
2 3 3 5 3 3 4 3 2 1 6 0 2 1 0