시간 제한메모리 제한제출정답맞힌 사람정답 비율
4 초 128 MB35252371.875%

문제

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 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 must a table as described above, row-by-row.

제한

  • 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.

예제 입력 1

4
10 1 3
20 2 5
10 2 2
20 2 1

예제 출력 1

-1 10 20
1 3 0
2 2 6

예제 입력 2

1
1 1 5

예제 출력 2

-1 1
1 5