A. Extreme Subtraction -差分

Problem - A - Codeforces

A. Extreme Subtraction

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given an array aa of nn positive integers.

You can use the following operation as many times as you like: select any integer 1≤k≤n1≤k≤n and do one of two things:

  • decrement by one kk of the first elements of the array.
  • decrement by one kk of the last elements of the array.

For example, if n=5n=5 and a=[3,2,2,1,4]a=[3,2,2,1,4], then you can apply one of the following operations to it (not all possible options are listed below):

  • decrement from the first two elements of the array. After this operation a=[2,1,2,1,4]a=[2,1,2,1,4];
  • decrement from the last three elements of the array. After this operation a=[3,2,1,0,3]a=[3,2,1,0,3];
  • decrement from the first five elements of the array. After this operation a=[2,1,1,0,3]a=[2,1,1,0,3];

Determine if it is possible to make all the elements of the array equal to zero by applying a certain number of operations.

Input

The first line contains one positive integer tt (1≤t≤300001≤t≤30000) — the number of test cases. Then tt test cases follow.

Each test case begins with a line containing one integer nn (1≤n≤300001≤n≤30000) — the number of elements in the array.

The second line of each test case contains nn integers a1…ana1…an (1≤ai≤1061≤ai≤106).

The sum of nn over all test cases does not exceed 3000030000.

Output

For each test case, output on a separate line:

  • YES, if it is possible to make all elements of the array equal to zero by applying a certain number of operations.
  • NO, otherwise.

The letters in the words YES and NO can be outputed in any case.

Example

input

Copy

4
3
1 2 1
5
11 7 9 6 8
5
1 3 1 3 1
4
5 2 1 10

output

Copy

YES
YES
NO
YES

=========================================================================

把全部数字变成0的言外之意就是a[1]等于0,且差分数组全部为0,那么两个操作分别对应了,a[1]-- a[k]++  与 a[k]--,显然第二个操作可以任意次消灭大于0的差分数组,第二个操作就难免与a[1]联系到一块,也就是全部小于0的数字都指望着a[1]来--,所以统计一下绝对值的和与a[1]比较一下大小即可

# include<bits/stdc++.h>
using namespace std;
typedef long long int ll;

ll a[300000],b[300000];
int main ()
{



 int t;
 cin>>t;
 while(t--)
 {
     int n;
     cin>>n;

     for(int i=1;i<=n;i++)
     {
         cin>>a[i];
         b[i]=a[i]-a[i-1];
     }
     ll sum=0;
     for(int i=2;i<=n;i++)
     {
         if(b[i]<=0)
            sum-=b[i];
     }

     if(sum>a[1])
     {
         cout<<"No"<<endl;
     }
     else
     {
         cout<<"YES"<<endl;
     }
 }
    return 0;
}

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

秦三码

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值