【打CF,学算法——二星级】CodeForces 292A SMSC (模拟)

【CF简介】

提交链接:CF 292A


题面:

A. SMSC
time limit per test   2 seconds
memory limit per test  256 megabytes
input standard input
output standard output

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 n 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 i-th task was described by two integers ti and ci — 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 x, the SMSC work at that moment as follows:

  1. If at the time moment x 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 x.
  2. If at the time moment x 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 x. 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 n 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.

Input

The first line contains a single integer n (1 ≤ n ≤ 103) — the number of tasks of the SMSC. Next n lines contain the tasks' descriptions: the i-th line contains two space-separated integers ti and ci (1 ≤ ti, ci ≤ 106) — the time (the second) when the i-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, ti < ti + 1 for all integer i (1 ≤ i < n).

Output

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.

Examples
Input
2
1 1
2 1
Output
3 1
Input
1
1000000 10
Output
1000010 10
Input
3
3 3
4 3
5 3
Output
12 7
Note

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.

题意:

       给定n个任务,每项任务都有任务到达时间,执行时间。每次接受到任务,就加入到任务队列中,刚收到的包是不能发送的,现有包是可以发送的。问完成全部发送的最后时间是什么,以及在整个过程任务队列(消息包)的最大长度。


解题:

      开始看错了,以为刚收到新任务那一刻是不能发送消息的,实际上是可以的,只要原来有包要发,但刚到的包是不能发的(如果我没理解错的话),那么题目的样例二就应该是1000011才对.....,按照刚收到包就可以发写的,然后A了,不知所然。


代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <set>
#include <map>
using namespace std;
int t[1005],c[1005];
int main()
{
    int n,cur,sz,ans_sz,p,endTime;
	scanf("%d",&n);
    for(int i=0;i<n;i++)
	  scanf("%d%d",&t[i],&c[i]);
	p=0;
	ans_sz=0;
	while(p<n)
	{
	   cur=t[p];
	   sz=c[p];
	   endTime=t[p]+c[p];
	   if(sz>ans_sz)
		   ans_sz=sz;
	   p++;
       while(p<n&&t[p]<endTime)
	   {
		   cur=t[p];
		   endTime+=c[p];
		   sz=endTime-cur;
		   if(sz>ans_sz)
			   ans_sz=sz;
		   p++;
	   }      
	}
	printf("%d %d\n",endTime,ans_sz);
	return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值