Vladosiya's blog

By Vladosiya, history, 3 years ago, In English

1851A - Escalator Conversations

Idea: Vladosiya, prepared: Aris

Tutorial
Solution

1851B - Parity Sort

Idea: Vladosiya, prepared: myav

Tutorial
Solution

1851C - Tiles Comeback

Idea: Vladosiya, prepared: myav

Tutorial
Solution

1851D - Prefix Permutation Sums

Idea: Gornak40, prepared: ibraevdmitriy

Tutorial
Solution

1851E - Nastya and Potions

Idea: Vladosiya, prepared: Vladosiya

Tutorial
Solution

1851F - Lisa and the Martians

Idea: Gornak40, prepared: Gornak40

Tutorial
Solution

1851G - Vlad and the Mountains

Idea: Vladosiya, prepared: Vladosiya

Tutorial
Solution
  • Vote: I like it
  • +96
  • Vote: I do not like it

| Write comment?
»
3 years ago, hide # |
 
Vote: I like it +9 Vote: I do not like it

Very interesting competition!

Thanks to Vladosiya and your team!

»
3 years ago, hide # |
Rev. 2  
Vote: I like it +5 Vote: I do not like it

I have an idea to solve G in another way (a bit complicated). Height of vertex = value of vertex The best way from point $$$a$$$ to $$$b$$$ by traversing vertexex with minimum values. So, we can make a tree/forest (if graph is not connected) on our graph and use only simple paths to move between vertexes. We sort our vertexes by value. Maintain DSU. Iterate every edge of every vertex and add edge if vertex are in diffrerent unions.
Our query is reformulated: check if maximum of value of every vertex on simple path between $$$a$$$ and $$$b$$$ is smaller or equal to $$$value[a]$$$ + $$$energy$$$. If $$$a$$$ and $$$b$$$ are in different unions then path does not exists. It could be done by finding $$$c = lca(a,b)$$$. We divided our task to find maximum on path between $$$a$$$ and $$$c$$$, and on path between $$$b$$$ and $$$c$$$. And resulting maximum will be maximum from these. To find LCA and maximum on path between $$$a,b$$$ and $$$lca(a,b)$$$ we can use binary lifting.

»
3 years ago, hide # |
Rev. 2  
Vote: I like it 0 Vote: I do not like it

I nearly got F. I know there is something to do with sorting but don't have enough time to implement it

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Why problem E doesn't have cycles? I read E description for very long time but still don't know why :(

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it +20 Vote: I do not like it

    It is guaranteed that no potion can be obtained from itself through one or more mixing processes.

    • »
      »
      »
      3 years ago, hide # ^ |
       
      Vote: I like it 0 Vote: I do not like it

      For problem E, Is it possible to have the following criteria

      1 needs 4 and 5 for mixing & 2 needs 1 and 5 for mixing.

      For 1, we already have 5 included, so how will that affect the answer for 2 which has both 1 and 5. Is such a case even possible , if yes , how will the answer be calculated (adding both 1 and 5 or only 1)?

      • »
        »
        »
        »
        3 years ago, hide # ^ |
         
        Vote: I like it +8 Vote: I do not like it

        That is valid.

        Find cost of 4 and 5, now you have the cost for 1. Use the cost of 1 and 5 to get the cost for 2.

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it +10 Vote: I do not like it

    "Moreover, no potion can be obtained from itself through one or more mixing processes." here it is

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    "It is guaranteed that no potion can be obtained from itself through one or more mixing processes." This statement means that agent i cannot be mixed directly or indirectly by Agent i(that is, itself)

    • »
      »
      »
      3 years ago, hide # ^ |
       
      Vote: I like it +1 Vote: I do not like it

      thank you, seems like I need to improve my English reading skill...

»
3 years ago, hide # |
Rev. 5  
Vote: I like it +11 Vote: I do not like it

In problem F can also be understood using equation

$$$a+b = a ⊕ b+ 2*(a$$$&$$$b)$$$

$$$a = a_{i} ⊕x$$$

$$$b = a_{j} ⊕x$$$

$$$ \large \frac{(a_{i} ⊕x) + (a_{j} ⊕x) - (a_{i} ⊕x ⊕a_{j} ⊕x)}{2} = \frac{(a_{i} ⊕x) + (a_{j} ⊕x) - (a_{i} ⊕a_{j} )}{2} $$$

So we need to get min pair xor and $$$x$$$ which increases positive term.

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    this is cool, but I dont really know how to find x. Then I saw a lot of people do like ((1 << k) — 1) ^ (a[i] | a[i-1]); after sorting. can anyone explain this a bit?

    • »
      »
      »
      3 years ago, hide # ^ |
       
      Vote: I like it 0 Vote: I do not like it

      We know that all given numbers are strictly less than $$$2^k$$$, so the biggest possible number with the most bits (exactly k bits) set to 1 is equal to $$$2^k - 1$$$, to maximize our expression (a[i] ^ x)&(a[i-1] ^ x) we intuitively want to set to 1 only those bits in x that do not occur either in a[i] or a[i — 1] (and bits that do occur both in a[i] and a[i-1] are the result of the logical or of a[i] and a[i-1]).

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    bro, you are the best, thanks!!

»
3 years ago, hide # |
 
Vote: I like it +16 Vote: I do not like it

G can be solved online using persistent DSU, which also allows us to solve the problem of finding the minimum energy needed to go from $$$a$$$ to $$$b$$$ in $$$O(\log n)$$$.

Submission

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it +8 Vote: I do not like it

    Can you explain the algorithm you used in short please? I read about persistent DSU but I didn't see standard unite and find_set functions in your dsu and also what does the upper_bound at the end signify?

    • »
      »
      »
      3 years ago, hide # ^ |
       
      Vote: I like it +8 Vote: I do not like it

      Here is my implementation of persistent DSU:

      For each set, store its elements. Instead of storing the parent of each element store a vector of pairs $$$(time, parent)$$$. Since we want the length of the path from each element to its root to always be 1, when merging two sets update the parent of each element in the smaller set. This results in an amortized space and time complexity of $$$O(n \log n)$$$.

      Proof of complexity

      To get the root of an element at time $$$t$$$ we can simply binary search to find the last $$$(time, parent)$$$ entry with $$$time \le t$$$.

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

In my solution of D I have used slightly different checks to determine if the original array was a permutation.

Let's assume we already know that the deleted element isn't the last one — it's either the first one or some element in the middle (same as in the editorial).

  • For the original array to be a permutation there can't be two differences of 1 in the prefix array (we can't reduce a 1 to any other difference by inserting an element back to the prefix array).
  • Given array of prefix sums can either have at most one difference bigger than n, or at most 2 equal differences (we need to insert back at least one element to fix either one of those, so if we have to insert more than one element, the original array isn't a permutation).

I don't know how to prove that these 2 conditions are sufficient for the original array be a permutation, but apparently this is enough, my submission: 215583206

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Someone please explain the secret solution of div2F mentioned in editorial.. what are AVX instructions ? :)

»
3 years ago, hide # |
 
Vote: I like it +1 Vote: I do not like it

unordered_map gives TLE while map works

Can someone help me understand why using unordered_map fails(TLE on case 13) but using map works in problem D. The logic in my code is to find answer based upon the occurance of a difference between adjacent elements > n and any repeated differences. I know that average time complexity for unordered_map is O(1) while in worst case it is O(n) and average for map is O(log n), however I always thought that using unordered_map is faster due to better average. What am I missing? My submission using unordered_map — 215744161 My submission using map — 215746951 Both the codes are same except the usage of map instead of unordered_map

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

I thought editorial of D would have a better solution.

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    You can check my submission for easier to understand and implement solution. Main idea is very similiar to the one in editorial. If last element was removed from prefix array, then we end up with permutation without 1 element, and if remove other element, then we will end up with permutation without 2 elements and a special element which should be the sum of missing elements of mentioned permutation.

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Is the solution 2 for F correct? Consider the case: 1 (0b000001), 31 (0b011111), and 32 (0b100000), with k = 6: Here the answer is ai=1, aj=32. If we look at a(i+1), it has a very high (non-minimal) xor with both aj and ai and the answer is not the adjacent numbers after sorting.

Spoiler (my understanding)
  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it +11 Vote: I do not like it

    You're right about minimizing $$$a_i$$$ ^ $$$a_j$$$ part, but your example is wrong: 1^31 < 1^32

    • »
      »
      »
      3 years ago, hide # ^ |
       
      Vote: I like it +8 Vote: I do not like it

      Thanks, I made a very silly mistake there, blinded by maximizing the matching bits and ignoring their values

»
3 years ago, hide # |
 
Vote: I like it +8 Vote: I do not like it

good div 3!!

but...i think problem A need to be easier to understand TvT

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

For problem F, I don't think solution 3 passes, as you typed O(n^2/16), or is it just a typo of the time complexity? Thanks.

»
3 years ago, hide # |
 
Vote: I like it +3 Vote: I do not like it

How can we use AVX instructions to solve 1851F?

»
3 years ago, hide # |
 
Vote: I like it +3 Vote: I do not like it

For problem E, since there can't be any cycles, the problem can also be solved by first doing a topological sort. And then a DP in that order, because for all $$$i$$$ we have already computed the answer for the potions it can be mixed by (namely some $$$j$$$ where $$$j \lt i$$$).

(And great competition, thank you Vladosiya and team!)

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it +8 Vote: I do not like it

    Meanwhile you can perform a topological sort on a DAG, in case of a problem like this you don't need to. You can just traverse all the unvisited nodes with a simple dfs in a "topological sort"-like manner, compute the answer for each unvisited node based on prices of its children, memorize the answer (one of the main points of dp) and move onto the rest of the nodes.

    Because that's exactly what I did during the contest — wrote a topological sort on autopilot and didn't even use it afterwards (how silly of me).

    • »
      »
      »
      3 years ago, hide # ^ |
       
      Vote: I like it 0 Vote: I do not like it

      can we simply solve e with simple array based approach. just trying to update values to 0 for potions which r unlimited and then calculate cost, and simply give the output by comparing.

      • »
        »
        »
        »
        3 years ago, hide # ^ |
         
        Vote: I like it 0 Vote: I do not like it

        If by an array based approach you mean this solution: 215678317, then I don't think your approach is correct, namely, there are a couple of inaccuracies that stick out to me right away:

        • You have multiple nested loops in your solution, which leads to at least $$$O(n^3 + k \cdot n^2)$$$ time complexity
        • You seem to process all queries "online", i.e. you try to reduce prices for all potions after reading each new recipe
        • I don't think you are reading the recipes in the right format

        Try to draw a couple of test examples on paper, look at what kind of graphs do you get and try to proceed from there.

»
3 years ago, hide # |
Rev. 4  
Vote: I like it -8 Vote: I do not like it

In F, we can actually prove that we need minimum XOR pair, let Ai = A and Aj =B and x = X (A ^ X).(B^X) = (AX' + A'X)(BX' + B'X) = ABX' + A'B'X From this, we can deduce that for whatever A and B, there exists X that can give a maximum value so, we only need to calculate the maximum value of AB + A'B' which is basically XNOR. Hence we need to calculate the minimum of XOR of all pair.

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Solution of problem E using Trie.
algorithm -> Before inserting a element into the TRIE we check the minimum xor we can form using the current element and the previous element inserted int the TRIE.
We can also construct the other element and the number X(the element which satisfies the inqquality (ai⊕x)&(aj⊕x) ) while traversing the TRIE.

submission Link : link

»
3 years ago, hide # |
 
Vote: I like it +4 Vote: I do not like it

I think F was Google-able, but I didn't have the insight to try it in the contest. Great contest! (if not a little frustrating)

»
3 years ago, hide # |
Rev. 3  
Vote: I like it +25 Vote: I do not like it

I tried coding this $$$O(n^2/16)$$$ solution to problem F using AVX instructions. However its taking 2.14s for 1.5e5 elements, but barely blowing the 3s TL for 2e5. Can anyone think of any optimizations?

https://mirror.codeforces.com/contest/1851/submission/215775069

Update: After only saving the block indices that gave the minimum (not the element indicies) and then reiterating separately though these two blocks, I managed to save just enough operations.

$$$O(n^2/16)$$$ AC: https://mirror.codeforces.com/contest/1851/submission/215791929

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it +5 Vote: I do not like it

    curious to know how did you learn this AVX instructions thing and why?

    • »
      »
      »
      3 years ago, hide # ^ |
      Rev. 2  
      Vote: I like it +11 Vote: I do not like it

      I dont really know AVX instructions (discovered it today).

      When I saw the editorial, I searched and found this blog https://mirror.codeforces.com/blog/entry/98594. After reading it, I implemented a solution using __m128 (which is $$$O(n^2/8)$$$ here). Later, googling a bit about 256 bit AVX, found more instructions and finally managed to optimize enough to pass.

      Why? No specific reason, guess I like playing around with these things on my spare time. It probably doesn't help me in CP though.

      • »
        »
        »
        »
        3 years ago, hide # ^ |
         
        Vote: I like it 0 Vote: I do not like it

        Thank you for the link! You saved my day, I googled "AVL Instructions" only to find some pragma stuffs.

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

How unlucky you are-> My honest reaction: my solution= 215621385 and my submission just after the contest after just adding two brackets in if(i!=H) condition 215624902

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Has anyone solved F with a binary search(n log(n))?

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Someone please help me. This 215826166 really drives me crazy. I got tens of Runtime Error with GUN C++ 20 because of exit code: -1073741819 (STATUS_ACCESS_VIOLATION) but the same code could be Accepted with MS C++ 2017. I can't figure out why.

  • »
    »
    3 years ago, hide # ^ |
    Rev. 2  
    Vote: I like it 0 Vote: I do not like it

    I got it. It's actually a common problem in C++ when sorting if two elements are equal the result should be false!

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

I have an approach similar to solution-$$$2$$$ for Problem F but we don't need to sort.

Solution

Here is my solution.

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Greedy solution for F:

We need to find value = (a[i] ^ x) & (a[j] ^ x). Note that a[i] & value removes bits that do not affect the answer. Let's find value greedily starting from the highest bits. All we need to do is make sure that after adding next 1 bit, there is still at least two different i that produce a[i] & (value | (1 << u)).

int value = 0;
for (int u = k - 1; u >= 0; --u) {
    map<int, int> q;
    for (int i = 0; i < n; ++i) {
        if (++q[a[i] & (value | (1 << u))] > 1) {
            value |= (1 << u);
        }
    }
}
map<int, int> q;
for (int i = 0; i < n; ++i) {
    int y = a[i] & value;
    if (q.count(y)) {
        cout << i + 1 << " " << q[y] + 1 << " " << (value ^ y) << "\n";
        return;
    }
    q[y] = i;
}
»
3 years ago, hide # |
 
Vote: I like it +1 Vote: I do not like it

Anyone whose E shows runtime error on test case 12[python]

»
3 years ago, hide # |
Rev. 2  
Vote: I like it 0 Vote: I do not like it

I have another solution for problem F. It relies on the fact that for any bit, if it is on or off in both the numbers we choose, than that bit will be on in the number we try to maximise. With this in mind we can define a recursive function that for some maximal suffix of bits of the number we try to maximse, keeps track of all the numbers with that suffix and which of those numbers have the next bit set to 0 and which bit set to 1 tries to turn on the next bit in the solution or just skip it if it is not possible (this happens when there are 0 or 1 numbers with the next bit being 0 and 0 or 1 numbers with the next bit being 1). This results in a solution of complexity O(nk). Here is my code: https://mirror.codeforces.com/contest/1851/submission/216012524

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

For task E, you can simply write a recursion

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Very good contest! I learned a lot of new knowledge.

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

can anyone plz tell in problem g why cant we just simply perform dfs starting from a and check whether we are able to ever reach b or not with the necessary checks of energy .

»
3 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Is there some tutorial for bitwise trie data structure from problem F? It's hard for me to understand the official solution.

»
2 years ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

Problem E,It is guaranteed that no potion can be obtained from itself through one or more mixing processes. but in 1st example case 3,potion 1 can be obtained from 2,4,5 , and potion 4 can be obtained from 1,5, doesn't that make 1 and 4 a circle???

  • »
    »
    2 years ago, hide # ^ |
    Rev. 2  
    Vote: I like it +12 Vote: I do not like it

    Are you talking about this test case?

    5 1
    5 4 1 3 4
    2
    2 4 5
    3 3 5 4
    2 1 4
    1 5
    0
    

    Read the statement again:

    "This is followed by $$$n$$$ lines describing ways to obtain potions by mixing.

    Each line starts with the integer $$$m_i$$$ ($$$0\le m_i \lt n$$$) — the number of potions required to mix a potion of the type $$$i$$$ ($$$1\le i\le n$$$).

    Then line contains $$$m_i$$$ distinct integers $$$e_1,e_2,\dots,e_{m_i}$$$ ($$$1\le e_j\le n, e_j\ne i)$$$ — the indices of potions needed to mix a potion of the type $$$i$$$. If this list is empty, then a potion of the type $$$i$$$ can only be bought."

    The first integer on those lines is is the number of remaining integers on that line, it's not one of the potions. Potion $$$1$$$ can be made from potions $$$\{2, 5\}$$$, potion $$$4$$$ can be made from potion $$$\{5\}$$$.

    • »
      »
      »
      2 years ago, hide # ^ |
       
      Vote: I like it 0 Vote: I do not like it

      oh I thought the first digit of each line is a potion,thanks for replying!!!

»
15 months ago, hide # |
 
Vote: I like it 0 Vote: I do not like it

what to do if e had cycles?