CF292A.SMSC

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Some large corporation where Polycarpus works has its own short message service center (SMSC). The center's task is to send all sorts of crucial information. Polycarpus decided to check the efficiency of the SMSC.

For that, he asked to give him the statistics of the performance of the SMSC for some period of time. In the end, Polycarpus got a list of nn tasks that went to the SMSC of the corporation. Each task was described by the time it was received by the SMSC and the number of text messages to send. More formally, the ii -th task was described by two integers tit_{i} and cic_{i} — the receiving time (the second) and the number of the text messages, correspondingly.

Polycarpus knows that the SMSC cannot send more than one text message per second. The SMSC uses a queue to organize its work. Consider a time moment xx , the SMSC work at that moment as follows:

  1. If at the time moment xx the queue is not empty, then SMSC sends one message from the queue (SMSC gets the message from the head of the queue). Otherwise it doesn't send messages at the time moment xx .
  2. If at the time moment xx SMSC receives a task, then it adds to the queue all the messages from this task (SMSC adds messages to the tail of the queue). Note, that the messages from the task cannot be send at time moment xx . That's because the decision about sending message or not is made at point 1 before adding these messages to the queue.

Given the information about all nn tasks, Polycarpus wants to count two values: the time when the last text message was sent and the maximum size of the queue at some time. Help him count these two characteristics he needs to evaluate the efficiency of the SMSC.

输入格式

The first line contains a single integer nn (1<=n<=103)(1<=n<=10^{3}) — the number of tasks of the SMSC. Next nn lines contain the tasks' descriptions: the ii -th line contains two space-separated integers tit_{i} and cic_{i} (1<=ti,ci<=106)(1<=t_{i},c_{i}<=10^{6}) — the time (the second) when the ii -th task was received and the number of messages to send, correspondingly.

It is guaranteed that all tasks were received at different moments of time. It is guaranteed that the tasks are sorted in the chronological order, that is, t_{i}<t_{i+1} for all integer ii (1<=i<n) .

输出格式

In a single line print two space-separated integers — the time when the last text message was sent and the maximum queue size at a certain moment of time.

输入输出样例

  • 输入#1

    2
    1 1
    2 1
    

    输出#1

    3 1
    
  • 输入#2

    1
    1000000 10
    

    输出#2

    1000010 10
    
  • 输入#3

    3
    3 3
    4 3
    5 3
    

    输出#3

    12 7
    

说明/提示

In the first test sample:

  • second 1: the first message has appeared in the queue, the queue's size is 1;
  • second 2: the first message is sent, the second message has been received, the queue's size is 1;
  • second 3: the second message is sent, the queue's size is 0,

Thus, the maximum size of the queue is 1, the last message was sent at the second 3.

首页