A. Saitama Destroys Hotel
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Saitama accidentally destroyed a hotel again. To repay the hotel company, Genos has volunteered to operate an elevator in one of its other hotels. The elevator is special — it starts on the top floor, can only move down, and has infinite capacity. Floors are numbered from 0 to s and elevator initially starts on floor s at time 0.

The elevator takes exactly 1 second to move down exactly 1 floor and negligible time to pick up passengers. Genos is given a list detailing when and on which floor passengers arrive. Please determine how long in seconds it will take Genos to bring all passengers to floor 0.

Input

The first line of input contains two integers n and s (1 ≤ n ≤ 100, 1 ≤ s ≤ 1000) — the number of passengers and the number of the top floor respectively.

The next n lines each contain two space-separated integers fi and ti (1 ≤ fi ≤ s, 1 ≤ ti ≤ 1000) — the floor and the time of arrival in seconds for the passenger number i.

Output

Print a single integer — the minimum amount of time in seconds needed to bring all the passengers to floor 0.

Examples
Input
3 7
2 1
3 8
5 2
Output
11
Input
5 10
2 77
3 33
8 21
9 12
10 64
Output
79
Note

In the first sample, it takes at least 11 seconds to bring all passengers to floor 0. Here is how this could be done:

1. Move to floor 5: takes 2 seconds.

2. Pick up passenger 3.

3. Move to floor 3: takes 2 seconds.

4. Wait for passenger 2 to arrive: takes 4 seconds.

5. Pick up passenger 2.

6. Go to floor 2: takes 1 second.

7. Pick up passenger 1.

8. Go to floor 0: takes 2 seconds.

This gives a total of 2 + 2 + 4 + 1 + 2 = 11 seconds.

算出每个人到0层的时间,最大值和s比较

#include <iostream>
#include <cstdio>
#include <cstring>
#include <queue>
#include <cmath>
#include <vector>
#include <set>
#include <map>
#include <algorithm>
using namespace std;
typedef long long ll;
int main()
{
int n,s,a,b,max=;
cin>>n>>s;
for(int i=;i<n;i++)
{
cin>>a>>b;
if(a+b>max) max=a+b;
}
if(s>max) cout<<s<<endl;
else cout<<max<<endl;
return ;
}

最新文章

  1. 新冲刺Sprint3(第二天)
  2. React Native 简介:用 JavaScript 搭建 iOS 应用 (1)
  3. MongoDB的启动
  4. 山东意外险风险信息推送V7非车
  5. 20141103--SQL主键,外键
  6. codeforces C. Prime Swaps
  7. Ceph的Block分析
  8. 没有标准化字符串的后果(IOS)
  9. 有关app的一些小知识
  10. [bzoj2843&amp;&amp;bzoj1180]极地旅行社 (lct)
  11. Excel as a Service &mdash;&mdash; Excel 开发居然可以这么玩
  12. Kali 2.0 下 Metasploit 初始化配置
  13. .NETCore_初探
  14. Jmeter(二十八)Jmeter-Question之“HTTPS请求”
  15. sublime text3:sublime text3本地服务器方式运行文件
  16. opencv 学习总结 方法总结
  17. UIImage添加滤镜
  18. 【Alpha】Daily Scrum Meeting——blog2
  19. Web APi 入门例子
  20. poj 2185

热门文章

  1. 6款 jQuery Lightbox图片查看触控插件
  2. Java 8 Stream API具体解释
  3. xml布局内容总结(四)--Android
  4. .NET 框架简单介绍
  5. Java - 多线程Callable、Executors、Future
  6. 深入理解cookie与session
  7. POJ 3670 DP LIS?
  8. Windows 相关
  9. python对MySQL进行添加修改删除以及字符串的操作
  10. 《剑指offer》数值的整数次方