双指针算法
#include
using namespace std;
int n;
const int N=2*100000+50;
int a[N];
int main()
{
cin>>n;
for(int i=0;i
for(int j=0;j
}
int ans=0;
int len=N;
for(int j=0,l=0;j
{
len=min(len,j-l+1);
ans-=a[l];
双指针算法最先出现在Python成神之路。
共有 0 条评论