Problem
Watson gives Sherlock an array A of length N . Then he asks him to determine if there exists an element in the array such that the sum of the elements on its left is equal to the sum of the elements on its right. If there are no elements to the left/right, then the sum is considered to be zero.
Formally, find ani , such that, A 1+A 2...A i-1 =A i+1+A i+2...A N.
Formally, find an
Input Format
The first line containsT , the number of test cases. For each test case, the first line contains N , the number of elements in the array A . The second line for each test case contains N space-separated integers, denoting the array A .
The first line contains
Output Format
For each test case print
For each test case print
YES
if there exists an element in the array, such that the sum of the elements on its left is equal to the sum of the elements on its right; otherwise print NO
.
Constraints
1≤T≤10
1≤N≤105
1≤A i ≤2×104
1≤i≤N
Sample Input
2
3
1 2 3
4
1 2 3 3
Sample Output
NO
YES
Explanation
For the first test case, no such index exists.
For the second test case,A[1]+A[2]=A[4] , therefore index 3 satisfies the given conditions.
For the first test case, no such index exists.
For the second test case,
Analysis
- First calculate the sum of all elements
- Maintain curr as the cumulated sum in the left parts, when traversing the array
- if (curr == sum - curr - arr[i]), then it means the sum in the left part and right part of arr[i] equals
- Time:
- O(n), as the array has been traversed twice
- Space
- O(1)
No comments:
Post a Comment