C

来源:互联网 发布:web 开发语言 知乎 编辑:程序博客网 时间:2024/05/16 12:35

                             C - Saitama Destroys Hotel


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 sat 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 ≤ 1001 ≤ 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 ≤ s1 ≤ 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.

Example
Input
3 72 13 85 2
Output
11
Input
5 102 773 338 219 1210 64
Output
79
Note

In the first sample, it takes at least 11 seconds to bring all passengers to floor0. 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.

                   

                                                   这是本菜鸡的第一篇博客,先从简单贪心的开始吧。

                 这是一题标准的水题贪心,主要考察思维方式。
                 题目意思为有一个楼梯,只能上不能下,有N层楼梯有乘客,楼梯最高层数为S,然后是输入N组数据,前一个数为所在层           数f,后一个数为该层乘客需要多久才来t。电梯每下一层需要1S。问最短什么时候电梯能够带所有乘客到达底层。
        反过来思考,每一组数据到达底层的时间都为所在层数+多久后乘客到达。我们只需要取这N组数据中t+f的最大值就好了。
                                                                  下面上代码

         #include<cstdio.h>

         #include<algorithm>

         using namespace std;
         int main() {
              int n,s,sum;
              while(scanf("%d%d",&n,&s)!=EOF) {
             sum=s;
              int x,y;
             for(int i=0; i<n; i++) {
                    scanf("%d%d",&x,&y);
                    sum=max(x+y,sum);
             }
                   printf("%d\n",sum);
            }
            return 0;
       }