天津大学OJ_2017_07_12比赛I题L-The math problem

该博客主要介绍了ACM竞赛中的L-The math problem题目,内容包括问题描述、输入输出格式、示例及解题思路。解题关键在于通过一次遍历数组,不断更新最小值和最大差值来找到数组中最大子数组差值。
摘要由CSDN通过智能技术生成

L-The math problem

Description:

Given an array a with n intergers, please tell me the max(aj−ai),0≤i≤j≤n−1.

Input:

The input consists of multiple test cases. The first line contains an integer T, indicating the number of test cases.(1≤T≤1000)
Each case contains one integer N.(0≤N≤10^7). Then comes a line with N intergers ai(−10^7≤ai≤10^7)

Output:

For each case only output the answer.

Sample Input:

1
5
1 3 5 4 2 

Sample Output:

4

题目意思:

就是给你n个数,然后让你找max{aj-ai},其中j>=i的。

思路:

  • 首先我们要知道我们最好只能扫一遍就能求出。所以要不断更新最小值和最大差值。

  • 可以这样想,我们从第一个数开始扫,得到当前值 a[i] ,当遇到比我们当前最小值 minN

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值