D. Extreme Subtraction

194 篇文章 1 订阅
71 篇文章 0 订阅

链接:https://codeforces.ml/contest/1443/problem/D

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

代码:

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn=1e6+10;
const int mod=1e9+7;
ll t,n,m;
ll a[maxn];
int main()
{
    cin>>t;
    while(t--)
    {
        cin>>n;
        for(int i=1;i<=n;i++)
        {
            cin>>a[i];
        }
        int p=0,flag=1;
        ll x=a[1];
        for(int i=2;i<=n;i++)
        {
            a[i]-=p;
            if(a[i]<0)
                flag=0;
            if(x>=a[i])
                x=a[i];
            else
                p+=a[i]-x;
        }

        if(flag!=0)
            cout<<"YES"<<endl;
        else
            cout<<"NO"<<endl;
    }
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值