Help pls!
# | User | Rating |
---|---|---|
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 |
# | User | Contrib. |
---|---|---|
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 |
Help pls!
Name |
---|
You can keep an array of Boolean values, with each index representing whether or not you have seen this number in the array. It will be of size n+1, since mex of n elements is at most n+1. Fill this array in with a O(n) loop over the array, and then go over the Boolean array and find the first false value, that index will be your mex.
please provide him code you dumb assss
u can simply use lower bound on the array instead of iterating all over. With a complexity of O(logn) insetad of O(n).
lower_bound
won't work because the array will not be of the form[1,1,1, 0, 0, 0, ...]
it can be something like[1, 0, 1, 1, 1, 1, 1]
Oh yeah u are right :)) Thats why i am newbie.
You can use cycle sort to put elements to it's corresponding index. Then traverse again and first element not equal to index is your mex.
Remember to ignore elements out of bound.
Time: O(N)
Space: O(1)
If there are $$$Q$$$ mex queries of ranges in an array lengthened $$$N$$$, then it can be solved in $$$O(Q\sqrt N+N)$$$ with Mo's algorithm.
in case of the given array is sorted, you can binary search on the first index that is not equal to it's value in the array, the answer will be that index. time
O(logN)
.Besides being sorted, the array should only have unique values.
this can be easily handled while taking the initial array.
If you want to just find out the mex of the whole array, write a simple loop.
If you want to query the mex of an interval for many times, this problem may help. https://www.luogu.com.cn/problem/P4137
Sorry I don't know "可持久化线段树"'s English translation.
It is a persistent segment tree.
I think this video may be helpful. It is about different ways to find MEX of an array. From the simplest one to the most efficient
https://youtu.be/JDuVLyKn7Yw?si=CRqVObXm7JGdCMmg
if array is permutation of lenght N, and one value is missing, you can just find total sum = n*(n+1)//2 and then subtract each element of array from sum. Final value of sum is going to be your MEX.
Construct a hash array. Use Binary search and range query data structure such as minimum Sparse Table, check if in given range the minimum value is zero and accordingly update pointers.