Codeforces 730G. Car Repair Shop 【map】

 

G. Car Repair Shop
time limit per test
2 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

Polycarp starts his own business. Tomorrow will be the first working day of his car repair shop. For now the car repair shop is very small and only one car can be repaired at a given time.

Polycarp is good at marketing, so he has already collected n requests from clients. The requests are numbered from 1 to n in order they came.

The i-th request is characterized by two values: si — the day when a client wants to start the repair of his car, di— duration (in days) to repair the car. The days are enumerated from 1, the first day is tomorrow, the second day is the day after tomorrow and so on.

Polycarp is making schedule by processing requests in the order from the first to the n-th request. He schedules the i-th request as follows:

  • If the car repair shop is idle for di days starting from si (si, si + 1, ..., si + di - 1), then these days are used to repair a car of the i-th client.
  • Otherwise, Polycarp finds the first day x (from 1 and further) that there are di subsequent days when no repair is scheduled starting from x. In other words he chooses the smallest positive x that all daysx, x + 1, ..., x + di - 1 are not scheduled for repair of any car. So, the car of the i-th client will be repaired in the range [x, x + di - 1]. It is possible that the day x when repair is scheduled to start will be less than si.

Given n requests, you are asked to help Polycarp schedule all of them according to the rules above.

Input

The first line contains integer n (1 ≤ n ≤ 200) — the number of requests from clients.

The following n lines contain requests, one request per line. The i-th request is given as the pair of integerssi, di (1 ≤ si ≤ 1091 ≤ di ≤ 5·106), where si is the preferred time to start repairing the i-th car, di is the number of days to repair the i-th car.

The requests should be processed in the order they are given in the input.

Output

Print n lines. The i-th line should contain two integers — the start day to repair the i-th car and the finish day to repair the i-th car.

Examples
input
3
9 2
7 3
2 4
output
9 10
1 3
4 7
input
4
1000000000 1000000
1000000000 1000000
100000000 1000000
1000000000 1000000
output
1000000000 1000999999
1 1000000
100000000 100999999
1000001 2000000

AC代码:

#include<cstdio>
#include<iostream>
#include<map>
#include<algorithm>

using namespace std;

typedef __int64 LL;
 
int main()
{
	map<LL,LL> M;
	int N;
	scanf("%d",&N);
	while(N--) 
	{
		LL s,d,e;
		cin>>s>>d;
		e=s+d-1;
		map<LL ,LL>:: iterator it=M.lower_bound(s);
		if(it==M.end()||it->second>e) {
			printf("%I64d %I64d\n",s,e);
			M[e]=s; continue;
		}
		s=1;
		while(1){
			e=s+d-1;
			it=M.lower_bound(s);
			if(it==M.end()||it->second>e) {
				printf("%I64d %I64d\n",s,e);
				M[e]=s; break;
			}
			s=it->first+1;
		} 
	}
	return 0;
} 


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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值