GUPTA MECHANICAL

IN THIS WEBSITE I CAN TELL ALL ABOUT TECH. TIPS AND TRICKS APP REVIEWS AND UNBOXINGS ALSO TECH. NEWS .............

Thursday 16 June 2022

[Solution] Directional Increase Codeforces Solution | Codeforces Problem Solution 2022


C. Directional Increase
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

We have an array of length n. Initially, each element is equal to 0 and there is a pointer located on the first element.

We can do the following two kinds of operations any number of times (possibly zero) in any order:

  1. If the pointer is not on the last element, increase the element the pointer is currently on by 1. Then move it to the next element.
  2. If the pointer is not on the first element, decrease the element the pointer is currently on by 1. Then move it to the previous element.

But there is one additional rule. After we are done, the pointer has to be on the first element.

Solution Click Below:-  CLICK HERE

You are given an array a. Determine whether it's possible to obtain a after some operations or not.

Input

The first line contains a single integer t (1t1000)  — the number of test cases. The description of the test cases follows.

The first line of each test case contains a single integer n (1n2105)  — the size of array a.

The second line of each test case contains n integers a1,a2,,an (109ai109) — elements of the array.

It is guaranteed that the sum of n over all test cases doesn't exceed 2105.

Output

For each test case, print "Yes" (without quotes) if it's possible to obtain a after some operations, and "No" (without quotes) otherwise.

You can output "Yes" and "No" in any case (for example, strings "yEs", "yes" and "Yes" will be recognized as a positive response).

No comments:

Post a Comment