Can this problem problem be solved using segment tree. If yes can anyone can tell how to build Seg tree.
During combining two segments how do i check for mid and (mid+1)th element in merged segement.
# | 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 | 166 |
2 | maomao90 | 163 |
2 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
Can this problem problem be solved using segment tree. If yes can anyone can tell how to build Seg tree.
During combining two segments how do i check for mid and (mid+1)th element in merged segement.
Name |
---|
Auto comment: topic has been updated by Siriuslight (previous revision, new revision, compare).
It can be solved by Mo s algorithm using map to store count in O(n sqrt(n))(if we use unordered map)
We can just simply store the frequencies of numbers with
int[]
as the numbers greater than n can be omitted.Ohh nice idea. but how do u choose block size because every time block size sqrt(n) won't work sometimes 2*sqrt(n) will work instead. How to decide on block size
Umm... for the problems with n = 105, I usually take
SIZE = 300
just for simplicity.And I have never faced that Mo's Algorithm is one of the intended solution but it cannot pass just because my
SIZE
is not good enough. Can you share the cases thatsqrt(n)
cannot work properly?check these submissions of mine
1.here size= sqrt(n), time limit exceeded(5000 ms)
2. here size= 3/2 * sqrt(n),time = 4180 ms.
3. here size= 2*sqrt(n), time = 3086 ms.
[Sorry, just ignore this]
How does that matter .Arent both same
returning a.l<b.l is same as query1.left / SIZE < query2.left / SIZE when both are not equal isnt it?
Here, check this out — http://mirror.codeforces.com/contest/86/submission/24900658.
This is the submission which TLed. Use this comparison in future. I don't know why it works better, I saw it somewhere. I believe it was in UnknownNooby's comment but not sure.
Since P_Nyagolov summoned me, I'll try to explain this. First of all, this is still not the best comparison, I'm no longer exactly this, I'm using better one:
Long story short: keep block number inside of your structure and compare these values instead of calculating blocck every time, make it so that in all even blocks a.r ≤ b.r, and in all odd blocks a.r ≥ b.r
When you are sorting you will compare your values times, due to this you will divide times, which can be actually way slower than simple operations. This way you speedup the
std::sort
called before Mo's.Second optimization which is that I reverse all even blocks makes the Mo's itself run faster on average. Think of it this way: when you finish performing operations on a block, if next block isn't reversed, you will firstly have to delete most of elements just to handle first query of a block, though it would have been easier to compute later queries first because their right border is closer. On random testcases this is a huge leap in perfomance.
read editorial editorial
see implementation source
implementation uses Fibbonachi Tree, but it easy converted to segment tree if you want.
P_Nyagolov Wow .It is such a good heuristic .
It almost reduces the constant in the running time by half.
And I think it can be easily justified. In previous version for each block we are moving from left to right and then again back to leftmost to begin for the next block (this last step for moving back takes O(n) time).
In the version u mentioned if for a block if we travel from left to right then next block from right to left (in this case we are avoiding that O(n))
That O(n) is now avoided for sqrt(n) block transitions.so we are saving a total of O(nsqrt(n)) time out of total time (which i feel will be 2*N*sqrt(N) to 3*N*sqrt(N) by taking all things into consideration with very less approximation).
So now we have reduced running time almost by 1/2.