我是靠谱客的博主 自信仙人掌,最近开发中收集的这篇文章主要介绍Tram一、Tram总结,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

文章目录

  • 一、Tram
  • 总结


一、Tram

本题链接:Tram

题目
A. Tram
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
Linear Kingdom has exactly one tram line. It has n stops, numbered from 1 to n in the order of tram’s movement. At the i-th stop ai passengers exit the tram, while bi passengers enter it. The tram is empty before it arrives at the first stop. Also, when the tram arrives at the last stop, all passengers exit so that it becomes empty.

Your task is to calculate the tram’s minimum capacity such that the number of people inside the tram at any time never exceeds this capacity. Note that at each stop all exiting passengers exit before any entering passenger enters the tram.

Input
The first line contains a single number n (2 ≤ n ≤ 1000) — the number of the tram’s stops.

Then n lines follow, each contains two integers ai and bi (0 ≤ ai, bi ≤ 1000) — the number of passengers that exits the tram at the i-th stop, and the number of passengers that enter the tram at the i-th stop. The stops are given from the first to the last stop in the order of tram’s movement.

The number of people who exit at a given stop does not exceed the total number of people in the tram immediately before it arrives at the stop. More formally, . This particularly means that a1 = 0.
At the last stop, all the passengers exit the tram and it becomes empty. More formally, .
No passenger will enter the train at the last stop. That is, bn = 0.
Output
Print a single integer denoting the minimum possible capacity of the tram (0 is allowed).

Examples

input
4
0 3
2 5
4 2
4 0
output
6

Note
For the first example, a capacity of 6 is sufficient:

At the first stop, the number of passengers inside the tram before arriving is 0. Then, 3 passengers enter the tram, and the number of passengers inside the tram becomes 3.
At the second stop, 2 passengers exit the tram (1 passenger remains inside). Then, 5 passengers enter the tram. There are 6 passengers inside the tram now.
At the third stop, 4 passengers exit the tram (2 passengers remain inside). Then, 2 passengers enter the tram. There are 4 passengers inside the tram now.
Finally, all the remaining passengers inside the tram exit the tram at the last stop. There are no passenger inside the tram now, which is in line with the constraints.
Since the number of passengers inside the tram never exceeds 6, a capacity of 6 is sufficient. Furthermore it is not possible for the tram to have a capacity less than 6. Hence, 6 is the correct answer.

本博客给出本题截图
在这里插入图片描述
在这里插入图片描述

题意:输出车上最多时候人的数目

AC代码

#include <iostream>
#include <algorithm>

using namespace std;

const int N = 1010;

int a[N],b[N];
int res, cnt;

int main()
{
    int n;
    cin >> n;
    
    for (int i = 0; i < n; i ++ )
        cin >> a[i] >> b[i];
        
    for (int i = 0; i < n; i ++ )
    {
        cnt = cnt - a[i] + b[i];
        res = max(res, cnt);
    }
        
    cout << res << endl;
    
    return 0;
}

总结

水题,不解释

最后

以上就是自信仙人掌为你收集整理的Tram一、Tram总结的全部内容,希望文章能够帮你解决Tram一、Tram总结所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部