Elements before which no element is bigger

PROBLEM :
Given an array of integers, the task is to find count of elements before which all the elements are smaller. First element is always counted as there is no other element before it.

Input:
The first line of input will contain no of test cases T . Then T test cases follow . Each test case contains 2 lines. The first line of each test case contains an integer N denoting the number of elements in the array, the next line contains N space separated integer's denoting the elements of the array.


Output:
For each test case in new line print the Number of Elements before which no element is bigger


Constraints:
1<=T<=100
1<=N<=1000

Example:

Input
2
6
10 40 23 35 50 7
3
5 4 1

Output
3
1

Explanation:

Test Case 1
Input: arr[] =  {10, 40, 23, 35, 50, 7}
Output: 3
The elements are 10, 40 and 50.
No of elements is 3

Test Case 2
Input: arr[] = {5, 4, 1}
Output: 1
There is only one element 5
No of element is 1

--------------------------------------------------------------------------------
SIMPLE c++ IMPLEMENTATION :
--------------------------------------------------------------------------------

#include<iostream>
using namespace std;
int no_element_bigger(int [],int ) ;
int main()
 {
int t,arr[1000],no,i ;
cin>>t ;
while(t--)
{
   cin>>no ;
   for(i=0;i<no;i++)
       cin>>arr[i] ;
     
   cout<<no_element_bigger(arr,no) ;
   cout<<endl ;
}
return 0;
}

int no_element_bigger(int arr[],int no)
{
    int max , count ,i ;
    count=1 ;
   
    max=arr[0] ;
   
    for(i=0;i<no;i++)
    {
        if(max<arr[i])
        {
            count++ ;
            max=arr[i] ;
        }
    }
    return count ;
}

---------------------------------------------------------------------------------

Comments

Popular posts from this blog

Count ways to N'th Stair(Order does not matter)

Replace all ‘0’ with ‘5’ in an input Integer

Chocolate Distribution Problem

Remove characters from the first string which are present in the second string

Primality Test ( CodeChef Problem code: PRB01 )