E. Special Elements

題目戳這裏

time limit per test1 second
memory limit per test64 megabytes
inputstandard input
outputstandard output
Pay attention to the non-standard memory limit in this problem.

In order to cut off efficient solutions from inefficient ones in this problem, the time limit is rather strict. Prefer to use compiled statically typed languages (e.g. C++). If you use Python, then submit solutions on PyPy. Try to write an efficient solution.

The array a=[a1,a2,…,an] (1≤ai≤n) is given. Its element ai is called special if there exists a pair of indices l and r (1≤l<r≤n) such that ai=al+al+1+…+ar. In other words, an element is called special if it can be represented as the sum of two or more consecutive elements of an array (no matter if they are special or not).

Print the number of special elements of the given array a.

For example, if n=9 and a=[3,1,4,1,5,9,2,6,5], then the answer is 5:

a3=4 is a special element, since a3=4=a1+a2=3+1;
a5=5 is a special element, since a5=5=a2+a3=1+4;
a6=9 is a special element, since a6=9=a1+a2+a3+a4=3+1+4+1;
a8=6 is a special element, since a8=6=a2+a3+a4=1+4+1;
a9=5 is a special element, since a9=5=a2+a3=1+4.
Please note that some of the elements of the array a may be equal — if several elements are equal and special, then all of them should be counted in the answer.

Input
The first line contains an integer t (1≤t≤1000) — the number of test cases in the input. Then t test cases follow.

Each test case is given in two lines. The first line contains an integer n (1≤n≤8000) — the length of the array a. The second line contains integers a1,a2,…,an (1≤ai≤n).

It is guaranteed that the sum of the values of n for all test cases in the input does not exceed 8000.

Output
Print t numbers — the number of special elements for each of the given arrays.

Example

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

5
1
0
4
0

前綴和+尺取

#include<bits/stdc++.h>
using namespace std;
const int maxn=1e6+1000;
typedef long long ll;
const int inf=0x3f3f3f3f;
int cnt[maxn],n,x,a[maxn],sum[maxn],vis[maxn];
int check(int x)
{
     int l=1,r=2;
     while(r<=n)
     {
         int t=sum[r]-sum[l-1];
         if(t==x)
         {
             return 1;
         }
         if(t>x)l++;
         else r++;
         if(l==r)r++;
     }
     return 0;
}
int main()
{ 
   int t;
   cin>>t;
   while(t--)
   {
       memset(cnt,0,sizeof cnt);
       memset(a,0,sizeof a);
       int ma=-inf;
       cin>>n;
       for(int i=1;i<=n;i++)
       {
           cin>>a[i];
           cnt[a[i]]++;
           sum[i]=sum[i-1]+a[i];
           
       }
       int ans=0;
       for(int i=1;i<=n;i++)
       {
           if(!cnt[a[i]])continue;

           if(check(a[i]))
            ans+=cnt[a[i]];
            cnt[a[i]]=0;
           

       }
       cout<<ans<<endl;
   }
   //system("pause");
   return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章