Can lower_bound and upper_bound work with vector of pair<pair<int, int>, int> or nested pairs. I tried doing so but it is showing me error. So, how should we do that?
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
Can lower_bound and upper_bound work with vector of pair<pair<int, int>, int> or nested pairs. I tried doing so but it is showing me error. So, how should we do that?
Название |
---|
Don`t now how to do this. But I can tell you a substitute for this.
Implement your own struct for this. Like :
Write down a less than operator a separate comparator for it.
This is my code. Have a look.
My code — https://pastebin.com/BMM8f21P
Although I am having a small problem and I will be really happy if a third person can help us both. Lower bound returns the same value if its present in the query range. But in my code if I am searching {1 , 2 , 3} in the vector of particular struct, I am not getting the desired result.
I even implemented an (==) operator for this struct but it was not helpful.
The biggest thing that stands out in your code is that if all of the elements of the 3-tuple are equal, you're not returning anything from your comparison functions, like operator< I believe that's UB in C++, or whatever it is it's not going to be fun behavior.
Your compiler should really be warning about that, -Wall is good practice if you're not already using that.
Oh shit.
I did this by mistake. Thanks for telling me kadoban. :)
I have updated the code.
It works properly now.
Code — https://pastebin.com/qMmEbMKg
What error are you actually getting? It looks to me like it should just work.
For example this doesn't error for me (with --std=c++14 if it matters):
I believe making a custom comparator will solve the problem!