qwyz's blog

By qwyz, history, 12 months ago, In English

Help pls!

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

| Write comment?
»
12 months ago, # |
Rev. 2   Vote: I like it +32 Vote: I do not like it

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.

  • »
    »
    12 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    u can simply use lower bound on the array instead of iterating all over. With a complexity of O(logn) insetad of O(n).

    • »
      »
      »
      12 months ago, # ^ |
        Vote: I like it +31 Vote: I do not like it

      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]

»
12 months ago, # |
  Vote: I like it +20 Vote: I do not like it

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.

»
12 months ago, # |
  Vote: I like it +1 Vote: I do not like it

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. timeO(logN).

code
  • »
    »
    12 months ago, # ^ |
      Vote: I like it +10 Vote: I do not like it

    Besides being sorted, the array should only have unique values.

    • »
      »
      »
      12 months ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      this can be easily handled while taking the initial array.

      code
»
12 months ago, # |
  Vote: I like it +1 Vote: I do not like it

If you want to just find out the mex of the whole array, write a simple loop.

int mex(vector<int> vc) {
	vector<int> cnt;
	int n=vc.size(); cnt.resize(n+2);
	for(auto id:vc) if(vc<=n) cnt[id]=1;
	for(int i=0;i<=n;i++) if(cnt[i]==0) return i;
}

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.

»
12 months ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

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.