Gordon-Freeman's blog

By Gordon-Freeman, history, 6 weeks ago, In English

If i have a sorted vector like this v={ 5,6,7,8,9,10,11 } how can i get the number of elements that are bigger than x? lets say x is 9 so the number of elements bigger than 9 equals 2 how can i code that?

  • Vote: I like it
  • +6
  • Vote: I do not like it

»
6 weeks ago, # |
Rev. 2   Vote: I like it +13 Vote: I do not like it

Upper bound

code
  • »
    »
    6 weeks ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    lol , i did the exact same but when i compile it , it didn't give me any output and the program ended so i submitted the code anyway to ask what's wrong with it , and it got AC!! any idea why did that happen with my compiler? thanks.

    • »
      »
      »
      6 weeks ago, # ^ |
      Rev. 2   Vote: I like it 0 Vote: I do not like it

      The below code requires knowledge of binary search.

      #include<bits/stdc++.h>
      using namespace std;
      
      // Upper bound: The smallest index such that arr[ind]>N(Strictly greater than).
      int upperBound(vector<int> arr, int key){  // Here key is the element we want to find upperbound for.
          int low=0,high=arr.size()-1,ans=arr.size();  
          while(low<high){
              int mid=(low+high)/2;
              if(arr[mid]>key) {
                  ans=mid;
                  high=mid-1;
              }
              else low=mid+1;
          }
          return ans;
      }
      
      int main(){
          vector<int> v = {5, 6, 7, 8, 9, 15, 17};
          int num=9;
          int s= upperBound(v,num);
          cout << "Number of elements greater than " << num << " is " << v.size()-s <<endl;
          return 0;
      }
      

      Hope this helps.

    • »
      »
      »
      5 weeks ago, # ^ |
        Vote: I like it +11 Vote: I do not like it

      where did you submit ? Can you share the group link so I check the problem?

      • »
        »
        »
        »
        5 weeks ago, # ^ |
          Vote: I like it +5 Vote: I do not like it

        This was the problem 270900251 my code got AC but when i compiled it crashed for some reason that why i was confused

»
6 weeks ago, # |
  Vote: I like it 0 Vote: I do not like it

if the array is sorted you can use binary search to get the result in $$$O(log n)$$$ time, also C++ has a prebuilt function named upper_bound which does the same thing, if the array isn't sorted you can sort it first in $$$O(n log n)$$$ time and then use binary search or, iterate over the array and calculate it with a for/while loop in $$$O(n)$$$

»
6 weeks ago, # |
  Vote: I like it 0 Vote: I do not like it

You can do binary search or use built-in functions in C++ like upper_bound (strictly bigger) or lower_bound (equal or bigger).