Блог пользователя Gordon-Freeman

Автор Gordon-Freeman, история, 5 часов назад, По-английски

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?

  • Проголосовать: нравится
  • +1
  • Проголосовать: не нравится

»
5 часов назад, # |
Rev. 2   Проголосовать: нравится +12 Проголосовать: не нравится

Upper bound

code
  • »
    »
    23 минуты назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    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.

»
5 часов назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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)$$$

»
2 часа назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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