CF260D.Black and White Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The board has got a painted tree graph, consisting of nn 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 svs_{v} near each node vv — 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 svs_{v} .

输入格式

The first line of the input contains a single integer nn ( 2<=n<=1052<=n<=10^{5} ) — the number of nodes in the tree. Next nn lines contain pairs of space-separated integers cic_{i} , sis_{i} ( 0<=ci<=10<=c_{i}<=1 , 0<=si<=1090<=s_{i}<=10^{9} ), where cic_{i} stands for the color of the ii -th vertex (0 is for white, 1 is for black), and sis_{i} represents the sum of values of the edges that are incident to the ii -th vertex of the tree that is painted on the board.

输出格式

Print the description of n1n-1 edges of the tree graph. Each description is a group of three integers viv_{i} , uiu_{i} , wiw_{i} ( 1<=vi,ui<=n1<=v_{i},u_{i}<=n , viuiv_{i}≠u_{i} , 0<=wi<=1090<=w_{i}<=10^{9} ), where viv_{i} and uiu_{i} — are the numbers of the nodes that are connected by the ii -th edge, and wiw_{i} is its value. Note that the following condition must fulfill cvicuic_{vi}≠c_{ui} .

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
    
首页