Problem B. Sales Report

Author:A. Klenin   Time limit:4 sec
Input file:input.txt   Memory limit:16 Mb
Output file:output.txt  

Statement

The Unknown Trading Company have installed a new inventory-tracking system, which stores a complete database of goods and trading points worldwide. Each salespoint and each item was assigned an integer unique identifier (id). For every sale, the system logs id of the item, number of items sold, and id of the salespoint.

Your task is to output a summary report, tabulating total sales by items and salespoints. The report must be a two-dimensional table, with the first row containing item ids in increasing order, first column containing salespoint ids in increasing order, and values inside the table representing total sales of corresponding item from the corresponding salespoint. The value in first column of the first row must be −1. The values in cells without corresponding sales must be 0.

Input file format

Input contains number of records N, followed by N triplets of integers qi si vi, where qi — item id, si — salespoint id, vi — number of items sold.

Output file format

Output file must a table as described above, row-by-row.

Constraints

1 ≤ N ≤ 500000, 1 ≤ qi, si, vi ≤ 109, the summary table will have no more than 108 cells, the summary value in each cell will not exceed than 231−1.

Sample tests

No. Input file (input.txt) Output file (output.txt)
1
4
10 1 3
20 2 5
10 2 2
20 2 1
-1 10 20
1 3 0
2 2 6
2
1
1 1 5
-1 1
1 5

0.067s 0.008s 13