GUPTA MECHANICAL

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

Sunday 8 May 2022

Tokitsukaze and All Zero Sequence Codeforces Solution | Codeforces Problem Solution 2022

A. Tokitsukaze and All Zero Sequence
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Tokitsukaze has a sequence a of length n. For each operation, she selects two numbers ai and aj (ij1i,jn).

  • If ai=aj, change one of them to 0.
  • Otherwise change both of them to min(ai,aj).

Solution Click Below:-  CLICK HERE

Tokitsukaze wants to know the minimum number of operations to change all numbers in the sequence to 0. It can be proved that the answer always exists.

[Solution] Tokitsukaze and Good 01-String

Tokitsukaze and Two Colorful Tapes Codeforces Solution

Tokitsukaze and Permutations Codeforces Solution


Input

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

For each test case, the first line contains a single integer n (2n100) — the length of the sequence a.

The second line contains n integers a1,a2,,an (0ai100) — the sequence a.

Output

For each test case, print a single integer — the minimum number of operations to change all numbers in the sequence to 0.

Note

In the first test case, one of the possible ways to change all numbers in the sequence to 0:

In the 1-st operation, a1<a2, after the operation, a2=a1=1. Now the sequence a is [1,1,3].

In the 2-nd operation, a1=a2=1, after the operation, a1=0. Now the sequence a is [0,1,3].

In the 3-rd operation, a1<a2, after the operation, a2=0. Now the sequence a is [0,0,3].

In the 4-th operation, a2<a3, after the operation, a3=0. Now the sequence a is [0,0,0].

So the minimum number of operations is 4.

Join Now for Solution:- 

No comments:

Post a Comment