5

Editorial of Codeforces Global Round 21

 1 year ago
source link: https://codeforces.com/blog/entry/103479
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client
By feecIe6418, 6 months ago, In English

Thanks for participation!

If your solution to D involves any data structures and is not $$$O(n)$$$ -- please read the "solution 1". I believe it is very interesting, but to make the difficulty suitable for D we allowed not $$$O(n)$$$ solutions.

1696A - NIT orz!

Hint 1
Solution

1696B - NIT Destroys the Universe

Hint 1
Hint 2
Solution

1696C - Fishingprince Plays With Array

Hint 1
Hint 2
Solution

1696D - Permutation Graph

This problem has two different solutions. The first one is more beautiful, but less straight-forward.

Hint 1 for solution 1
Hint 2 for solution 1
Hint 3 for solution 1
Solution 1
Hint 1 for solution 2
Hint 2 for solution 2
Solution 2

1696E - Placing Jinas

Hint 1
Hint 2
Hint 3
Solution

1696F - Tree Recovery

Hint 1
Hint 2
Solution

1696G - Fishingprince Plays With Array Again

Hint 1
Hint 2
Hint 3
Solution

1696H - Maximum Product?

Hint 1
Hint 2
Solution

5 months ago, # |

Thank you for fast editorial!

5 months ago, # |

fast editorial, good problems

great round!

5 months ago, # |

What a speed!

5 months ago, # |

Editorials with hints. Appreciable efforts..Thanks!

5 months ago, # |

I hope I'm not the only one who got WA on question B for not realizing that the answer is at most 2... XD

  • 5 months ago, # ^ |

    got 4 times wa then realised .

  • 5 months ago, # ^ |

    Lol Same...

  • 5 months ago, # ^ |

    LOL ! I also did not realize it.

  • 5 months ago, # ^ |

    got WA 3 times not realizing answer will be at most 2, one more WA for a mental typo using max(ans,2) instead of min(ans,2).

5 months ago, # |

Thanks for so much early tutorial

5 months ago, # |

Best way to present editorial is with hints Thanks for fast and crisp editorial

  • 5 months ago, # ^ |

    Yeah, totally agreed! I love it when editorials have Hints as it allows many of us to solve problems (sometimes we just need that train of thought and a little nudge). Honestly, it's better than looking at the solution and then doing it, as there's still that feeling of 'doing it ourselves'

5 months ago, # |

Tq for fast Editorial

5 months ago, # |

Thank you for the fast editorial feecIe6418 Congrats on your first Global Round. It's hard to imagine that you single-handedly created all except for one problems for this round, that's amazing! Great work!

Feedback

5 months ago, # |

Thanks for the fast editorial. By the way,E<D.

5 months ago, # |

Thank you for Editrorial!

5 months ago, # |

Rev. 2  

-6

Feeling sorry for Tourist. Dude is facing a lot of negative deltas in recent times. I remember reading a blog few days back, when someone predicted Tourist's fall. It's becoming real now :(

  • 5 months ago, # ^ |

    Just out of curiosity, could you link that blogpost? I'd like to read it too

  • 5 months ago, # ^ |

    Brother Legends never dies Tourist is Legendary No one takes his place

    • 5 months ago, # ^ |

      There is nothing called legendary. If you consistently put in the effort for over a decade(He has been into mathematics and programming since age 10), you could become like him(may be better than him).

      • 5 months ago, # ^ |

        And you're still newbie after 3 years.

        • 5 months ago, # ^ |

          Because I am not consistent :( I am trying to be consistent.

        • 5 months ago, # ^ |

          And you are still unrated after 2 years

        • 5 months ago, # ^ |

          I am saving the link to this comment because i want to comment here when i get a decent level of rating in CF.

          • 5 months ago, # ^ |

            and what's your definition of "decent"?

              • 5 months ago, # ^ |

                lol, okay.

                • 5 months ago, # ^ |

                  I want to give the same reply to u one day

  • 5 months ago, # ^ |

    A Lion takes its one step back before making its bigger attack

  • 5 months ago, # ^ |

    Normal competition when everyone is too good.

  • 5 months ago, # ^ |

    Share the blog . I want to see what happen to our king !!.

  • 5 months ago, # ^ |

    i Dont think its a downfall if you get -56 for global rank 7.

5 months ago, # |

Thank you for Editrorial!

5 months ago, # |

Solution for E without using the identity given in the editorial: Let $$$D_i$$$ be the $$$i$$$'th diagonal, the set of $$$(x, y)$$$ such that $$$x+y=i$$$. Calculate the answer by summing each diagonal. When moving from $$$D_i$$$ to $$$D_{i+1}$$$, the current number of moves is simply multiplied by $$$2$$$, except in the case where some cell in $$$D_i$$$ is a "boundary" (the cell down or to the right is black). But there are only $$$O(n)$$$ such boundary cells, so we can simply subtract their contribution as we go along.

5 months ago, # |

The comment is hidden because of too negative feedback, click here to view it

5 months ago, # |

Plz show codes for the questions

5 months ago, # |

Are you sure memory limit will not exceed if we expand them? If not why did it happen to me?

  • 5 months ago, # ^ |

    because you do not need to store entire expanded array. you can simply store counts of repeating factors.

  • 5 months ago, # ^ |

    You shouldn't make the whole array just you can store the occurences

    • 5 months ago, # ^ |

      can you pls explain how to store the occurrences such that they appear in the correct order as well?

      • 5 months ago, # ^ |

        I did it just storing a pair of values: the factors and its number of ocurrences. For example, for M = 3 and A = {6 3 4} -> {[2,3] [1,3] [4,1]} Did it for both vectors and compare them

      • 5 months ago, # ^ |

        161770389 You can check here. I've just stored it as pair like if A={4,2,6} and M=2 then it will be {{2,3},{3,2}}.

5 months ago, # |

Thanks for the fast Editorial!

5 months ago, # |

Can someone explain why the following code for Problem C is getting RTE on Pretest 3?

Code
  • 5 months ago, # ^ |

    The maximum size of the array that can be created is of order 1e5, you are pushing more values than the max size, thus giving RTE. Instead of pushing all values, just store it in pair of vectors {value, frequency}.

    • 5 months ago, # ^ |

      Makes sense, thank you so much!

    • 5 months ago, # ^ |

      Excuse me, why is it giving RTE and not memory error?

      • 5 months ago, # ^ |

        As far as I know, segmentation fault = RTE in online judges

        • 5 months ago, # ^ |

          I meant how it's a segmentation fault? Like the code doesn't set any array size constraints as such

          • 5 months ago, # ^ |

            Because, after the array is completely filled, he is trying to insert more elements in it...

5 months ago, # |

Flash like Editorial!!!

5 months ago, # |

"Find the maximum possible value of the maximum value in a after any number (possibly zero) of operations."

In Problem A this line mislead me into thinking that we have to maximize the maximum value of the original array, so I took the maximum value say "V" in the array and expected V|Z to be the answer, but after spending like an hour and half I realized that the answer would be the maximum attainable value of any value in the array, I would like to request the authors to write clearer statements to avoid such confusion, like the line mentioned above could be replaced by, "Find the maximum possible value in a after any number (possibly zero) of operations." Those who faced the same difficulty can upvote the post so that it reaches the authors. Peace.

  • 5 months ago, # ^ |

    Exact same thing happened with me!!! wasted 24 mins on a simple problem.

5 months ago, # |

The problem F is great !

5 months ago, # |

Easier solution for F:

5 months ago, # |

fast editorial, good problems

great round!

5 months ago, # |

D was really great, I have solved it with stack, segment tree, and bfs :).

5 months ago, # |

Was it really a good idea to give n+1 number in array for task E ? I didn't solve it only because of this. The tasks mustn't be with such a potential trap I think.

  • 5 months ago, # ^ |

    lmao came here to comment this

5 months ago, # |

D is really cool, I solved it with mono stack and binary search

  • 5 months ago, # ^ |

    I cant understand the second approach given in editorial . Need help

5 months ago, # |

could someone please find the mistake in my submission for C?

  • 5 months ago, # ^ |

    seems integer overflow problem.

  • 5 months ago, # ^ |

    Int overflow

5 months ago, # |

For Question 2 it says that it will give you the smallest non-negative integer (**zero or positive number**) which does not appear in S. For test case 0 2 3 0 1 2 0 . if i take the entire array and put it in the mex function . how will it return any non-negative number that does not appear in the array ?

  • 5 months ago, # ^ |

    if you take entire array, it will return 4. return value of mex doesn't have to appear in array.

  • 5 months ago, # ^ |

    it will give 4. so the array will be 4 4 4 4 4 4 4. then do mex again for the entire array, it will give 0 this time. hence all 0.

5 months ago, # |

thanks for the editrorial!

5 months ago, # |

pls give some proofs for math formulas you are using in E solution otherwise it doesnt tutorial, because your solution based only on this math fact so you have to prove it

  • 5 months ago, # ^ |

    It's just hockey stick identity. Nothing more, nothing less. I don't think one has to prove a well-known, simple identity in combinatorics in their editorial

  • 5 months ago, # ^ |

    I'll leave a link to the solution of last problem from last Starters since it also uses this identity and gives a 'proof' based on another (maybe more well-known) identity.

  • 5 months ago, # ^ |

    Rev. 2  

    +12

    For row i : the summation is iCi + (i+1)Ci + (i+2)Ci ... + (i+v[i]-1)Ci.

    Now if we know iCi = 1 = (i+1)C(i+1)

    Replacing this in the above formula we get the summation for row i as :

    (i+1)C(i+1) + (i+1)Ci + (i+2)Ci ... + (i+v[i]-1)Ci.

    Combine the first 2 terms : (i+1)C(i+1) + (i+1)Ci = (i+2)C(i+1) [ Using the simple property nCr = (n-1)C(r-1) + (n-1)Cr ]

    Replacing this in the equation we get :

    (i+2)C(i+1) + (i+2)Ci ... + (i+v[i]-1)Ci

    Again now, we can combine the next 2 terms and so on. So finally we get (i+v[i])C(i+1)

    • 5 months ago, # ^ |

      Rev. 4  

      +22

      Thinking on how to come up with a visual approach, I have found the following one. It does nothing different than what 123thunderbuddie did, but supports the idea visually.

      We want to find the sum of the number of ways to reach every cell in the $$$i^{th}$$$ row. Assuming there are $$$c$$$ cells, the sum is equal to the following (just what 123thunderbuddie wrote):

      $$$\displaystyle \binom{i}{i} + \binom{i+1}{i} + \cdots + \binom{i+c-1}{i}$$$

      Suppose there is a row below that has the same number of cells $$$c$$$ (not the $$$(i+1)^{th}$$$ row but a temporary one). This sum is actually equal to number of ways to reach the last cell in that row, which is $$$\binom{i+c}{i+1}$$$ (number of ways to reach cell $$$(i+1, c-1)$$$ from $$$(0, 0)$$$). Here is a visualization:

      5312273254dfbdfeda3294163e569e56aae13d7f.png

5 months ago, # |

Why is this submission with long long giving WA, but this isnt.

  • 5 months ago, # ^ |

    The variable is z_cnt is not initialized in both of them resulting in UB. You got lucky with the second solution.

    • 5 months ago, # ^ |

      Thanks :)

      me rn

5 months ago, # |

Kudos to the authors for an amazing round. Finally reached Purple!

5 months ago, # |

I've noticed that in G there are no small tests before the first big one, maybe that's the case in other problems too, keep in mind that it's bad.

5 months ago, # |

I am not sure of the time complexity of this solution for D can someone help out https://codeforces.com/contest/1696/submission/161799451

I feel it should be $$$O(n)$$$ because any next greater or next smaller chain is travelled once.

5 months ago, # |

Rev. 2  

+20

We can do D in O(N). By maintaining premax,premin,sufmax,sufmin.

Spoiler
  • 5 months ago, # ^ |

    thanks for the code

    • 5 months ago, # ^ |

      Rev. 2  

      0

      you're welcome. Some lines are redundant you can remove them.

  • 5 months ago, # ^ |

    Doesn't this code will add multiple edges between two nodes? Though it won't affect our result.

    • 5 months ago, # ^ |

      Yup it will i thought of making vector<set> but i ran out of time. see my submission during contest. I clutched this question after being brutally harrassed by Problem C(nice problem) in last 3 min.

5 months ago, # |

Thank you very much for the fast editorial! I learned a lot from the problems I didn't solve.

5 months ago, # |

Rev. 2  

0

I solved problem D using greedy approach :) 161785869 here it is

5 months ago, # |

Can someone explain C please

  • 5 months ago, # ^ |

    Rev. 2  

    +2

    Just maintain vector of pairs where pairs.first = actual value and pair.second = frequency . Make vector of both a and b . And check at last a == b or not. Since we can divide every no m times even in the worst case it's log(n), which means atmost 30times for each element. which is still O(N). Code--

    Spoiler
    • 5 months ago, # ^ |

      Nice username name, totally relatable ;)

5 months ago, # |

Another solution for F: Let $$$S(u)$$$ be a set of pairs $$$(x, y)$$$ such that $$$d(x, u) = d(y, u)$$$. Notice that $$$u$$$ with minimal number of elements in $$$S(u)$$$ is a leaf and the vertex connected to it is a vertex $$$v$$$ such that $$$S(v)$$$ contains $$$S(u)$$$ and for every pair $$$(x, y)$$$ such that $$$(x, y)$$$ belongs to $$$S(v)$$$ and doesn't belong to $$$S(u)$$$ either $$$x = u$$$ or $$$y = u$$$. We can remove that leaf and continue the process.

  • 5 months ago, # ^ |

    Notice that u with minimal number of elements in S(u) is a leaf.

    Do you know how to prove this? It does make sense intuitively.

5 months ago, # |

Rev. 2  

+8

Is it just me or are the codes not attached?

5 months ago, # |

https://codeforces.com/contest/1696/submission/161805451 Can someone help me figure out why my problem C code is giving WA on test 9?

5 months ago, # |

Hope I'm not the only one who overcomplicated D with sparse tables, sets and binary searches.

5 months ago, # |

Rev. 3  

0

I was dazzled when I found the "more beautiful but less straightforward" solution to problem D. It was perfectly splendid! orz

  • 5 months ago, # ^ |

    order matters, in map is ordered by key in increasing order so.

    • 5 months ago, # ^ |

      Okk Thanks for this

5 months ago, # |

Any other guy who got wrong answer on problem B untill realising answer can be atmost 2 !!

5 months ago, # |

"EDITRORIAL" of Codeforces Global Round 21. Lol :D

5 months ago, # |

Rev. 3  

+32

I have another solution for F. It was very painful to implement, though, so I couldn't finish it during the contest. Maybe some of you had a similar thought.

First of all, if x and y are even distance apart, then there must be a valid z that's equidistant from them (center of their path). Also, if x and y are an odd distance apart, then no valid z will occur, clearly. Therefore we can create a graph where there is an edge between x and y if there is a valid such z. This graph must be bipartite, so we will be able to split vertices into 2 categories.

Now we will solve for the adjacent vertices of every vertex. After this, it will be pretty easy to construct a solution (and check if it is false) as we can just add in all the apparent edges. Consider the vertex v. Now, for all other vertices, we can form equivalence groups by their distance to v. Then, for each of these groups, we can check if every 2 vertices of that group are equidistant. If so, then clearly every one of these vertices is in a different component of the "graph without v". Now the size of the largest of those groups must be the degree of v, as each outgoing edge of v signifies one connected component on the "graph without v". Of course, we still are not able to pinpoint which one of these groups contains the vertices distance 1 around v. Let's say there are m such groups (groups where every 2 vertices are equidistant from each other and every vertex is equidistant from v with the largest possible size). Then they must be "circles" around v from distance 1 to m. We are trying to find the group of distance 1. This is where the bipartite property comes in: consider any point p from a group k distance away from v. If p and v are in different bipartite categories, then they are at an odd distance away from each other. Otherwise, they are even distanced away, and there will be exactly one single vertex z that is equidistant from them both, which will be in the middle of the path between p and v. This z will clearly be in the equivalence group with distance k/2 away from v. let's call this operation (obtaining a new vertex with k/2 distance) splitting. Now consider the equivalence group that splits the most. It is clear that if $$$k=2^ba$$$( a odd), then b will be the times it splits. Then, it is obvious that the largest power of 2 less than or equal to k will satisfy this property. The important part is that a vertex with a power-of-2 distance will eventually split into a vertex of distance 1 from v, and so we can obtain all the other vertices of distance 1 around v, and we are done.

I believe this method as described takes $$$O(n^3\log{n})$$$ time, and it could be simplified to $$$O(n^3)$$$

5 months ago, # |

In Q2) Won't a case like this 0 2 3 0 4 0 5 0 return 3 as answer since there are three subarrays which need to be turned into zero?

  • 5 months ago, # ^ |

    In this Optimal Move would be to take whole subarray and calculate its MEX and replace it with all elements in the array then second move would be converting all array value zero

    In your Example 0 2 3 0 4 0 5 0 We first find out the mex of whole array which is 1 so array will be 1 1 1 1 1 1 1 1 then in second operation we will convert the above array to 0 0 0 0 0 0 0 0 so no more than two ways are possible

    • 5 months ago, # ^ |

      Thanks now I get it

    • 5 months ago, # ^ |

      For 0 2 3 0 4 0 5 0 ans is 1 how ?

      • 5 months ago, # ^ |

        No ans is not one in this case beacause we will take min(2,count of total continuous non zero element) we need maximum two operation only min(2,3) will be 2

5 months ago, # |

Here is my solution to problem D:

I have a recursive function that takes two-parameter $$$(l, r)$$$ positions of the starting and ending index in an array and calculates the optimal answer for this range.

For the optimal answer, I first find the index of the minimum element and maximum element in the range $$$(l, r)$$$ and store them in $$$s$$$, $$$e$$$. $$$(s < e)$$$. I am using a segment tree and a map to find the index of the minimum and maximum in the range $$$(l, r)$$$. It is optimal to have an edge between $$$(s, e)$$$, so we add one edge.

So, The answer for the range $$$(l, r)$$$ is $$$1$$$ + the answer for $$$(l, s)$$$ + the answer for $$$(e, r)$$$, and the base case is that if $$$l$$$ == $$$r$$$, there is no need to add an edge, so return $$$0$$$.

Solution link

5 months ago, # |

Here is another solution for F:

Assume that for some two nodes $$$u$$$ and $$$v$$$, we know there exist an edge between them in the solution.

From this, we can find all vertices $$$w$$$ such that $$$dist(u, v) = dist(v, w)$$$, then the solution must also contain the edge $$$(v, w)$$$.

Repeating that process, we can find the solution (if exists) in a bfs-like way.

Therefore, for each $$$x$$$ from $$$2$$$ to $$$n$$$ we can suppose that the edge $$$(1, x)$$$ exists in the solution, try to find that solution, and see if it is valid.

5 months ago, # |

Great round. I especially liked that nothing between A and E is too implementation-heavy.

5 months ago, # |

Damn my $$$O(n \log^2n)$$$ solution for D managed to pass. :)

5 months ago, # |

Rev. 2  

+21

Minor issue: blog title has a typo (Editorial not editrorial)

feecIe6418

  • 5 months ago, # ^ |

    There r quite a lot of typos .

5 months ago, # |

Here is $$$O(n^3)$$$ solution to F. First we can find the farthest distance from any vertex $$$x$$$ to other. So we know the diameter of the tree. If we root the tree at the center, we can know the depth of every vertex. So we can determine at least one edge in the tree (node with depth 1 and the root), then use the method in the editorial. It also shows there is at most one valid answer.

5 months ago, # |

That's quick.

5 months ago, # |

I think the contest has too much observation.

  • 5 months ago, # ^ |

    As is literally every codeforces round including div 3, div.2, educational, div1+div2 combined, div1, olympiad-based rounds?

    (yes I know that div.4 exists but I don't have a very fond experience in div.4)

5 months ago, # |

a bit of pity for D

pass pretest make me think it works anyway

but didn't come up with cases like 1 100000 2 99999 3 99998 4 99997 ...

then got fst

try to consider more next time. or maybe always need to try to achieve as low complexity as i can

it's actually a great problem though, and solution 1 is awesome.

  • 5 months ago, # ^ |

    why so many downvotes

5 months ago, # |

For D, what if the maximum element is 1 or n?

5 months ago, # |

This time i screwed up my time on Div2C using Map to store the counts and matching them (which is not possible) because it leads to a very bigger value which cannot be stored. Using two pointers is a saviour

5 months ago, # |

Could someone please help me to find me the error in my code of problem D I am using approach 2 https://codeforces.com/contest/1696/submission/161834104

  • 5 months ago, # ^ |

    Take a look at Ticket 14387 from CF Stress for a counter example.

    • 5 months ago, # ^ |

      Ohh yes Got it Thanks!!

5 months ago, # |

Rev. 2  

+16

In problem G, when I set

const double INF = 1.0 / 0.0;

It got TLE on test 76 (or Pretest Passed 5880ms, and TLE on test 7 if I unroll the loops in matrix multiplication myself) with GNU C++14 (32bit), but ~850ms with GNU C++20 (64bit, winlib).

However, when I set

const double INF = 1e18;

Its speed remains unchanged with GNU C++20 (64bit, winlib), but when compiled by GNU C++14 (32bit), it works in <500ms and becomes the fastest submission.

Is there any logic behind this (about inf in double)?

  • 5 months ago, # ^ |

    Rev. 3  

    0

    An explanation for the first (but not very informative) is that diving by zero (even with floating numbers) is undefined behavior, (according to [expr.mul.4], or discussions in StackOverflow), and anything can happen with undefined behavior.

  • 5 months ago, # ^ |

    Rev. 2  

    0

    a better suggestion might be using std::numeric_limits<double>::infinity() as the value for inf. this is not undefined behaviour and still compares bigger than the maximum value representable with double.

5 months ago, # |

If you are/were getting a WA/RE verdict on problems from this contest, you can get the smallest possible counter example for your submission on cfstress.com. To do that, click on the relevant problem's link below, add your submission ID, and edit the table (or edit compressed parameters) to increase/decrease the constraints.

If you are not able to find a counter example even after changing the parameters, reply to this thread (only till the next 7 days), with links to your submission and ticket(s).

5 months ago, # |

great tutorial

5 months ago, # |

Can you please brief me, if the test case would 5 2 0 3 0 5 how the answer would be 2 or less explaining the l and r for each operation?

I didn't understand...sorry :(

  • 5 months ago, # ^ |

    in first operation,you can take l=1 and r=6(basically the entire array),so the new array will be 1,1,1,1,1,1. In second operation,again select l=1 and r=6,the array will now be 0,0,0,0,0,0.

    • 5 months ago, # ^ |

      For a collection of integers S, define mex(S) as the smallest non-negative integer that does not appear in S....

      Then it means I can take any smallest non negative integer? it's not necessary that it should be less than all the elements of the array right?

      • 5 months ago, # ^ |

        No it's not necessary.But you cannot just take "any" smallest non negative integer. for example-Mex(5,2,0,3,0,5) will be 1 because 1 is the smallest non negative integer which does not appear in this array.

        • 5 months ago, # ^ |

          thank you so much... <3

        • 5 months ago, # ^ |

          But how number of operation for (5,2,0,3,0,5) is 1.

5 months ago, # |

can anyone please explain the proof for problem c with intution by taking an example? i couldnt understand editorial

  • 5 months ago, # ^ |

    Try expanding $$$a$$$ and $$$b$$$ into $$$a^\prime$$$ and $$$b^\prime$$$ in the example test cases.

    • 5 months ago, # ^ |

      i have expanded both the arrays upto maximum extent as possible but im not getting proof/intution.

      • 5 months ago, # ^ |

        Now notice that it is possible to obtain $$$a^\prime$$$ from $$$a$$$ after some operations, and it is possible to obtain $$$b$$$ from $$$b^\prime$$$ after some operations, so if $$$a^\prime = b^\prime$$$, we can obtain $$$b$$$ from $$$a$$$.

        We still need to prove that if $$$a^\prime \ne b^\prime$$$, it is impossible to obtain $$$b$$$ from $$$a$$$ after any number of operations.

        To do so, note that the fully expanded form of $$$a$$$ does not change when you perform one of the operations on it.

5 months ago, # |

The comment is hidden because of too negative feedback, click here to view it

5 months ago, # |

What does it mean by "z will always become a submask of itself after any number of operations, so ai will always be a submask of (ai or z) after any number of operations"? Please explain.

  • 5 months ago, # ^ |

    Basically, $$$z$$$ will only lose bits.

    So $$$(a_i\mathrm{\ or\ } z^\prime) \le (a_i\mathrm{\ or\ } z)$$$, where $$$z^\prime$$$ is $$$z$$$ after some operations.

    • 5 months ago, # ^ |

      Okay, but what is the meaning of submask here specifically. Is it like changing the set bits of z after any number of operations so the resulting bit representation i.e. bit mask obtained is called submask?

      • 5 months ago, # ^ |

        $$$z^\prime$$$ is a submask of the bitmask $$$z$$$, since every bit that is set in $$$z^\prime$$$ is also set in $$$z$$$, but not necessarily vice versa.

        • 5 months ago, # ^ |

          It means new bitmask obtained after changing only the set bits of a bitmask is known as submask of that bitmask. Am I right?

          • 5 months ago, # ^ |

            Rev. 2  

            0

            Sounds right

5 months ago, # |

the explanation for problem c is very good.

5 months ago, # |

Find Solve problems for C ,orz,%%%,thans

5 months ago, # |

Rev. 3  

0

Why this code is working fine for question A? for(int i = 0; i < a.size(); i++){ cin >> a[i]; a[i] = a[i] | z; z = a[i] & z; ans = max(ans, a[i]); } Here I am performing both the operations — bitwise or and bitwise and. Also why it is not needed to perform second operation i.e bitwise as given in tutorial, any proof?

  • 5 months ago, # ^ |

    You are doing:

    	x = (a[i] | z)
    	y = x & z
    	z = y

    Every bit in z that is 1 is also 1 in x, so (x & z) equals z. In other words, you aren't changing the value of z and the second operation is doing nothing.

5 months ago, # |

Rev. 2  

0

Have a solution different from the tutorial for problem D which does not use segment tree or stacks, very difficult for me to explain how it works but the following ideas might help-

$$$1.$$$ $$$Its$$$ $$$always$$$ $$$optimal$$$ $$$to$$$ $$$jump$$$ $$$to$$$ $$$the$$$ $$$farthest$$$ $$$index$$$ $$$from$$$ $$$current$$$ $$$index.$$$

$$$2.$$$ $$$We$$$ $$$always$$$ $$$jump$$$ $$$from$$$ $$$a$$$ $$$local$$$ $$$maxima$$$ $$$to$$$ $$$a$$$ $$$local$$$ $$$minima,$$$ $$$and$$$ $$$then$$$ $$$to$$$ $$$a$$$ $$$local$$$ $$$maxima$$$ $$$and$$$ $$$so$$$ $$$on.$$$

161975222

5 months ago, # |

Rev. 2  

+18

For F, for each $$$i$$$, one can assume that edge $$$(1, i)$$$ is in the tree, and then try to construct the rest of the tree, as per hint 2. We can then check if the tree is valid.

At the start, for each node $$$v$$$, we can do a $$$O(n^2 \alpha(n))$$$ precomputation of the equivalence classes of nodes equidistant from $$$v$$$. Then, we can do each tree reconstruction and check in $$$O(n^2)$$$, for a total complexity of $$$O(n^3 \alpha(n))$$$.

5 months ago, # |

Can someone explain the equation given in Problem E?

5 months ago, # |

Hi, could someone take a look at why I'm getting WA on test case 3 of F? My submission is here.

Specifically, I create equivalence classes for each node; each equivalence class represents equal distance from said node. This is done using DSU's, which should make the whole thing have complexity $$$O(n^3)$$$. Thanks!

4 months ago, # |

I got a solution for F which solves it in $$$O(n^3)$$$

Well-known Theorem: there is atmost two centres in a tree (a center is a vertex with minimum value of maximum distance of a vertex from the given vertex: this value is called eccentricity).

Note that using the given information, we can find the eccentricity of a vertex: this is just the number of equivalence classes of vertices wrt any given vertex (two vertices belong to the same equivalence class wrt a given vertex if they have the same distance from that given vertex).

So we can easily find the centre(s) of the tree.

If there are two centers, there is a theorem that they must be connected, so we find an edge immediately and proceed to construct the tree.

If there is one center, then we can prove that all adjacent vertices have eccentricity of exactly one greater than the center, and all other non-adjacent vertices have eccentricity $$$\geq e+2$$$, where $$$e$$$ is eccentricity of the center. So in this case, we can find any node with $$$e^\prime = e+1$$$ and hence, these two must be connected, and we have found an edge.

4 months ago, # |

you should have explained the reason for 2 being the maximum ans.

2 months ago, # |

Rev. 2  

0

Can someone explain me why I am getting TLE on problem C in test 11 because according to me my program is running in O((n+k)logmV) (as given in the editorial) . Instead of storing frequency I am just using a count variable to check whether expansion of both array will be same. thanks https://codeforces.com/contest/1696/submission/173329854

43 minutes ago, # |

In problem E, if you don't know the equation : $$$\sum_{i = 0}^kC_{n+i}^n = C_{n+k+1}^{n+1}$$$, here's the proof:

first, you have to know $$$C_{a}^b = C_{a - 1}^b + C_{a - 1}^{b - 1}$$$

then,

$$$ \sum_{i = 0}^kC_{n+i}^n = C_n^n+C_{n+1}^n+C_{n + 2}^n + ...+C_{n+k}^n\\ =C_{n+1}^{n+1} + C_{n+1}^n + C_{n + 2}^n ... + C_{n + k}^n\\ =C_{n + 2}^{n + 1} + C_{n + 2}^n + ... + C_{n + k}^n\\ =C_{n + 3}^{n + 1} + ... + C_{n + k}^n\\ =...\\ =C_{n + k}^{n + 1} + C_{n + k}^n\\ =C_{n + k + 1}^{n + 1} $$$

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK