---
languages_supported:
- NA
title: CTEAMS
category: NA
old_version: true
problem_code: CTEAMS
tags:
- NA
layout: problem
---
### All submissions for this problem are available.
The executive chef is trying to bring some competitive spirit into his kitchen. He wants to split the chefs into two teams based on their age - he'll form the young and the old team. To make it fair, he will split them evenly or give the young team one person advantage when there is an odd number of chefs. Ages of all employees are unique. The executive chef also rated all chefs according to their cooking skills. Rating of a team is equal to the sum of ratings of its members. The chefs have developed a habit of coming to work late. The executive chef wants to keep the teams as fair as possible at all times and is therefore forced to change the teams each time one of the chefs comes to work in the morning. He needs your help with this task.
### Input
The first line contains the number of chefs N. The following N lines describe the chefs in order as they come to work. Each chef is described by two integers, his or her age Ai and rating Ri.
### Output
Every time a new chef joins the kitchen, output the absolute difference between team ratings.
### Constraints
- 1 <= N <= 10^5
- 1 <= Ai <= 10^9
- 1 <= Ri <= 1000
### Example
<pre>
<b>Input:</b>
5
2 3
1 7
5 5
3 1
8 15
<b>Output:</b>
3
4
5
4
9
</pre>