​原题链接​思路:
一觉醒来红了个题,一看发现没开ll,我大意了啊。
构造出0,1,2……的序列就行,如果少的话看前面多的能不能补上。
代码:

#pragma
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;typedef unsigned long long ull;
typedef pair<ll,ll>PLL;typedef pair<int,int>PII;typedef pair<double,double>PDD;
#define
inline ll read(){ll x=0,f=1;char ch=getchar();while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}return x*f;}
#define
#define
#define
#define
#define
#define
#define
ll ksm(ll a,ll b,ll p){ll res=1;while(b){if(b&1)res=res*a%p;a=a*a%p;b>>=1;}return res;}
const int maxn=1e6+7;
ll a[maxn],n;
void solve(){
n=read;
rep(i,1,n) a[i]=read;
ll las=-1,sum=0;
rep(i,1,n){
las++;
if(a[i]>=las){
sum+=a[i]-las;
}
else{
int t=las-a[i];
if(sum>=t) sum-=t;
else{
puts("NO");
return ;
}
}
}
puts("YES");
}

int main(){
int T=read;
while(T--) solve();
return 0;
}