https://codeforces.com/contest/1291/problem/B
思路:单纯思维题,构造到最后一步了却还想着优化..
可以发现,不管最后的峰在哪,我们最好就是把开头设置0,然后1 2 3....
这样不难想。但是如果去枚举结果的点,再去这么想,就会发现下降的峰受到一些本身不在这个高度的限制。
但这其实说明了已经到了贪心的最优了。
比如0 1 2 3 4 ...这样去构造,当a[i]>x的时候,说明不能再往后了。也就说明前面最多可以这么多。
对于后面也是一样。加起来看是否>n就好。
#include<iostream>
#include<vector>
#include<queue>
#include<cstring>
#include<cmath>
#include<map>
#include<set>
#include<cstdio>
#include<algorithm>
#define debug(a) cout<<#a<<"="<<a<<endl;
using namespace std;
const int maxn=3e5+1000;
typedef long long LL;
inline LL read(){LL x=0,f=1;char ch=getchar(); while (!isdigit(ch)){if (ch=='-') f=-1;ch=getchar();}while (isdigit(ch)){x=x*10+ch-48;ch=getchar();}
return x*f;}
LL a[maxn];
int main(void){
cin.tie(0);std::ios::sync_with_stdio(false);
LL t;cin>>t;
while(t--){
LL n;cin>>n;
for(LL i=1;i<=n;i++) cin>>a[i];
LL l=0;LL r=0;
for(LL i=1;i<=n;i++){
if(a[i]>=l) l++;
else break;
}
for(LL i=n;i>=1;i--){
if(a[i]>=r) r++;
else break;
}
if(l+r>n){
cout<<"Yes"<<"\n";
}
else cout<<"No"<<"\n";
}
return 0;
}