Блог пользователя 300iq

Автор 300iq, 4 года назад, По-английски
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Tutorial is loading...
Разбор задач Codeforces Round 612 (Div. 1)
Разбор задач Codeforces Round 612 (Div. 2)
  • Проголосовать: нравится
  • +81
  • Проголосовать: не нравится

»
4 года назад, # |
Rev. 2   Проголосовать: нравится +18 Проголосовать: не нравится

Could someone please explain the DP approach of problem C of Div-2 ?

  • »
    »
    4 года назад, # ^ |
    Rev. 5   Проголосовать: нравится +62 Проголосовать: не нравится

    there are two ways:

    Firstly, let dp[i][j][k][0/1] means the answer to range 1-i with j odd numbers and k even numbers and the ith number is even/odd, so you can easily get the dp transition formula.
    And the final answer is min(dp[n][num1][num0][0],dp[n][num1][num0][1]). num1 means the total odd number in range of 1-n and num0 is the even.(num1 equals to ceil(n/2) and num0 equals to floor(n/2) ) The time complexity is O(n³)

    Secondly, since the number of even and odd used is sure in the range 1-i( if you use j even numbers, the number of odds is certainly i-j) , you can just use dp[i][j][0/1] where j means the number of evens in range 1-i (or that of odds if you like), and the dp dynamic formula will not change a lot. The time complexity is O(n²)

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится +1 Проголосовать: не нравится

      Can you explain the transition formula. I still can't get it.

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        My submission: 68264857. I did almost the same thing but by optimizing the recursion. What you do here is that if we have an empty slot we put a number that is divisible by 2 or not. Then, you have to compare the result of that recursion with out current result and print the final result.

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится +8 Проголосовать: не нравится

        Well, I gonna talk about the first type of dp transition formula and I am sure that you can think about the second one based on my explanations.

        Firstly, based on the definition of the dp array, the formula is related to the value of ai. If ai ≠ 0, so we know whether it is odd or even. If it is an odd, the formula is " dp[i][j][k][1]=min(dp[i-1][j-1][k][0]+1, dp[i-1][j-1][k][1]) ". The explanation is that if you consider the value in the range 1~i with j odds and k evens used and the current one being odd, you need to think about the values, which you have calculated, in the range 1~(i-1), with (j-1) odds and k evens used since it is the only legal transition state to the current state. And whether the previous one you choose is odd or even depends on their values. Similarly, for a even number, it is " dp[i][j][k][0]=min(dp[i-1][j][k-1][0], dp[i-1][j][k-1][1]+1) ". Otherwise, ai is 0. So we dont exactly know whether it is odd or even, and we need to talk about both two situations. So both two above formulas should be considered.

        Secondly, in order to get a correct value, we need to initialize the value of dp array correctly. So let's initialize them as 'inf'( a big value ). The reason is that 'inf' represents the illegal condition which we can avoid when we do 'min' operation. After that , just let dp[0][0][0][0]=dp[0][0][0][1]=0 because these two are legal situations.(Before anything starts, we stand at pos 0, use 0 odds and 0 evens, and the complexity is also 0).

        So that it the first dp transition formula( the dp array of which consists many 'inf' values because there are many illegal situations ) , you can try to think about the second one, which consists less illegal situations.

        • »
          »
          »
          »
          »
          4 года назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          Very nice explanation. Thank you.

        • »
          »
          »
          »
          »
          4 года назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          dp[i][j][k][1]=min(dp[i-1][j-1][k][0]+1, dp[i-1][j-1][k][1]) " Could you please tell me the significance of adding 1 to dp[i-1][j-1][k][0] in transition function ? Thanks in advance gold1103

          • »
            »
            »
            »
            »
            »
            4 года назад, # ^ |
              Проголосовать: нравится 0 Проголосовать: не нравится

            it is very simple. When you calculate dp[i-1][j-1][k][0],you put an even number on position i-1. So when you put an odd number(because the last index of the current condition is 1) on position i, the answer(the complexity according to the problem) should add 1

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      My submission based on your logic above, and which should be O(n^2), seems to TLE on case 57.
      Can you take a look, please?

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        UPD: Nevermind! A stupid error when I was recomputing already computed values. This passes. Thanks!

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Can you please help me in telling what is wrong with my approach I am using 3 state DP array Here is my code

  • »
    »
    4 года назад, # ^ |
    Rev. 3   Проголосовать: нравится -24 Проголосовать: не нравится

    we can do it without dp also solution without dp

    count all odd space(where starting and ending is odd) and even space(where starting and ending is even) sort both odd and even array. put odd at odd place and even at even and check from starting and ending space also.

    Time complexity:O(n).

»
4 года назад, # |
  Проголосовать: нравится -33 Проголосовать: не нравится

quickest editorial !!

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Could someone explain the approach for 1287D - Numbers on Tree?

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +8 Проголосовать: не нравится

    My solution involves some dp on subtrees.

    Let's have a vector for every vertex $$$v$$$, where all vertices of its subtree are listed in increasing order of values assigned to them.

    Then, the transition is not difficult. For a vertex $$$v$$$, glue together all vectors of its children and insert $$$v$$$ into it on the $$$c_v$$$-th position.

    In order to get the answer, we look at the vector corresponding to the root of our tree: there, all vertices are listed in increasing order of values.

    Submission: 68292734

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Hey, your code seems to be really simple and neet. Can you please further explain it. I'm not able to understand your concept?

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      I didn't get it. Why is order[v] guaranteed to be listed in increasing order of values even before inserting the element in c[v]th position?

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Congratulations on your elegant solution!

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      how can i ever learn to think like this?

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +2 Проголосовать: не нравится

    My solution of 1287D is just recursion:

    1. find all answers for subtrees for childs
    2. concatenate them to have nice 1,2,3...n form (all nodes except current node)
    3. insert current node at exact position, and increment all numbers above.

    68267302 Why it works? Well, because childs are independent, and parent value is selected to cut all child nodes at exact position.

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      could you explain the second and third point more clearly,i saw your code it was quite simple so could you help it more?

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        Let answer of subtree would be what: what you should output if only the subtree is given. Then define function that will give answer for any subtree, and assume that our function will always work. Then, if this function got task to give answer about certain subtree, we can feed it with all subtrees of childs. All of them has answer in the form 1,2,3...n. Also, keep along with it original indices of vertices.

        Second point is to concatenate them in similar form. For example, if we have three answers: (1,2,3,4), (1,2), (1,2,3,4,5,6), then we can get (1,2,3,4),(5,6),(7,8,9,10,11,12). Correspoding parts to each child is enclosed into brackets.

        Last point is: we should place our 'root' (parent of childs) of the subtree in the answer. We just insert it at place we need to satisfy restriction about number of vertices in subtree. So, if it needs to have 5 childs less than number, then we give it value 6, so it should be inserted like this: (1,2,3,4),(5,*6*,7),(8,9,10,11,12,13). Corresponding childs are enclosed in brackets again.

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      WOW! Thanks for the pretty solution!

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Please someone answer why my code for div2 B 68280267 is getting TLE , though my complexity is O(n^2(k+log(n))

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    For this task, even PyPy doesn't help. You also using some set things that are not superfast. To pass the limit, you need to use some magic, like bitwise operations or other tricky things. Just look how other people solved it using python.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится 0 Проголосовать: не нравится

    I did the same in c++ i.e using set to get the third character. set has an biggest constant that's why it is giving TLE (at least in c++ not sure in python). So u should try to change set to 3 if conditions.

    for reference see this thread

»
4 года назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

https://codeforces.com/contest/1287/submission/68316351 this is O(k(n^2)log(n)) solution.But still getting TLE. please help me with this. thanks in advance.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Wtf with the tags Div2A/Div2C???

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

1286 A — Garland (C of Div-2) could be solved in $$$O(n)$$$ if we use radix sort.

»
4 года назад, # |
  Проголосовать: нравится +13 Проголосовать: не нравится

My "solution" for div 1C:

Query left and right half of string. Use basic backtracking to find all strings matching the answer, generate all candidates as concatenation of any possible string for left an right half. Calculate for each subsegment hash of answer for each string on this subsegment (can be done in O(n^2)) and find a subsegment giving distinct answers on all possible strings and query it. It takes two queries of length $$$n / 2$$$ and one of at most $$$n$$$ which is enough.

I managed to find 8 different strings with same answer, namely: abaabbabaabaabbabbabaabbab abaabbabbabaabbabaabaabbab abbabaabaabbabaabbabbabaab abbabaabbabbabaabaabbabaab baababbaabaababbabbaababba baababbabbaababbaabaababba babbaabaababbaababbabbaaba babbaababbabbaabaababbaaba But in the official testcases my solution never encountered more than two candidates for each half.

Any idea how do defeat it? 68322452

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

Could you replace the "1286B — Numbers on Tree" editorial's "Rightarrow" and "leq" with symbols. That would be appreciated. It appears only when the language is set to english.

»
4 года назад, # |
  Проголосовать: нравится +13 Проголосовать: не нравится

Could you please attach the solution too?

»
4 года назад, # |
Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится

Can anyone please explain why the first code gets TLE on test 43 while the second one doesn't 68329420 68263645 DIV 2 Que B

»
4 года назад, # |
  Проголосовать: нравится +8 Проголосовать: не нравится

Do yourself a favour and go see problem tags of div 2 C.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Could you give code for F? I get TLE with both fast zeta-transform 68330755 ($$$\mathcal{O}(2^{n} n^{2} \log n)$$$) and the $$$3^{n}$$$ approach 68330966, and AC only with fast randomised binary zeta-transform 68331478 ($$$\mathcal{O}(2^{n} nk \log n)$$$ where probability of success is polynomial in $$$(1 - 2^{-k})$$$).

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +20 Проголосовать: не нравится
    (1 + sqrt(2))^n + n^3 * 2^n
»
4 года назад, # |
  Проголосовать: нравится +15 Проголосовать: не нравится

Anything else missing in the Div2 C taglist?

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

My O(nlogn) solution for Div2D/DIV1B Insert all numbers from 1 to n in a order-statistics tree. perform a dfs,every time you newly enter a node s,assign ans[s]=value at position c[s] in the order-statistics tree,and erase that element from order-statistics tree 68342107

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +11 Проголосовать: не нравится

    It's actually not necessary to use an order-statistics tree here, my submission with $$$O(n^2)$$$ passes quite easily in 30 ms.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can someone please help me with the editorial of LCC ? I have a few doubts.

How to calculate the probability that the $$$i$$$ th collision occurs first ? Why ? Can someone explain this ?

The editorial says that the answer for the mask is the probability that none of the $$$X$$$ collisions do not occur and the extremes move in the direction of the mask. What is $$$X$$$ here ?

Also, what do the leaves of the segment tree hold ? What is the meaning of adding a ban ?

Please help me.

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +1 Проголосовать: не нравится

    Even though I solved just now LCC and just checked isn't there better solution in editorial, I couldn't understand it in the first place. But, it turns out, it's describing same approach. So, not surprising that you didn't understand it.

    Now, what I want to clarify is following. it says first i. It means first i collisions in list sorted by time. To make things clear, if there are n particles, then potentially you may have 3*n elements in this list. Each element of list is: which pair of two neighboring particles would collide in what configuration (three configuration described).

    Now, from where insight is comming. It's comming from neat fact that you may concatenate two segments using masks described. All you need to know, is probability to have ends of segment facing in certain directions, then you may concatenate them, and have new four values.

    So, you represent whole array of particles as array of unit segments with 4 masks, and using segmented tree you may find probability of whole segment. The trick is, that you may change single unit segment to ban some of combinations, and recalculate probability of whole segment in log(n).

    Finally, fact about occurance. When I realized it on my own, I was thinking in following way: lets calculate probability that nothing collide. It's just ban all collisions. Now, if we allow highest time of collision: there are two cases: nothing collide, or one or more collide at the same time the highest time of collision. So, probability that you have highest time collision is: probability of highest time of collision allowed minus probability of no collision allowed. Similarly, probability of second highest time is probability that it's allowed (and above) minus probability of highest time collision allowed (and above).

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится 0 Проголосовать: не нравится

      Thank you for your reply. If it is okay with you, can you please clarify some of my doubts ? Here is what I understood so far.

      1. The first collision is always between consecutive particles.
      2. We will calculate the time it takes for each of the $$$(n - 1)$$$ pairs of consecutive particles.
      3. We want to calculate the probability that the $$$i$$$-th of these collisions occur first. In order for this to happen, we need to change the directions of some particles to ensure that none of the $$$(i - 1)$$$ particles which come before have a collission.

      What I did not understand is how we use a segment tree to do this. Can you please help me ? :)

      • »
        »
        »
        »
        4 года назад, # ^ |
          Проголосовать: нравится 0 Проголосовать: не нравится

        (1), (2) is right. (3) we don't change any directions of particles. We ban pairs of consecutive particles to collide in exact configuration. So, for particles 5,6 we can do at once: LL — allow to collide, RR — ban, RL — allow for example (I don't care here about possibility of this case, but we can ban RR only). Segment tree is need to calculate probability of all this happen. If you have trouble with probability understanding, for n particles there is $$$100^n$$$ variations, and particle $$$i$$$ fly to the right in $$$p_i$$$ cases and to the left in $$$100-p_i$$$ cases, then you may count how many of configurations among $$$100^n$$$ is correct (taking bans into consideration), then divide the number by $$$100^n$$$ and it is probability. Then, apply expectation value formula by definition and you'll get answer.

        • »
          »
          »
          »
          »
          4 года назад, # ^ |
            Проголосовать: нравится 0 Проголосовать: не нравится

          If you are free, can you please work out a small example $$$(n = 3)$$$ by hand and show how to do it on paper ? :)

          • »
            »
            »
            »
            »
            »
            4 года назад, # ^ |
              Проголосовать: нравится +1 Проголосовать: не нравится

            Try to solve different problem. Statement is following: you're given $$$n,\;m,\; 0 \leq p_i \leq 10,\;0\leq t_i\leq 2,\;0\leq x_i\leq n-1$$$, it is number of particles, number of bans, probability 0 to 10, type of ban, and position of ban. You need to calculate number of arrays $$$a$$$ of length $$$n$$$ of numbers 0 to 9 such that some configurations banned.

            • if $$$t_i = 0$$$ then condition $$$a_{x_i} < p_{x_i}\;and\; a_{x_i+1} < p_{x_i+1}$$$ should be false. (anology to RR)
            • if $$$t_i = 1$$$ then condition $$$a_{x_i} \geq p_{x_i}\;and\; a_{x_i+1} \geq p_{x_i+1}$$$ should be false. (anology to LL)
            • if $$$t_i = 2$$$ then condition $$$a_{x_i} < p_{x_i}\;and\; a_{x_i+1} \geq p_{x_i+1}$$$ should be false. (anology to RL)

            Then, when you'll write this thing, find out how to add ban online and update answer fast.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Why is time limit getting exceeded on test case 10? I cannot understand. My submission https://codeforces.com/problemset/submission/1287/68273741

»
4 года назад, # |
Rev. 2   Проголосовать: нравится +11 Проголосовать: не нравится

it's interesting that the vast majority of div1 folks just decided to use dp in div1_a. i bet they knew about the solution the author presented here, but still they prefered dp. so the rule of thumb — avoid greedy approach if you are unsure about some parts of it?

  • »
    »
    4 года назад, # ^ |
      Проголосовать: нравится +8 Проголосовать: не нравится

    I think it's more so that the DP solution is much cleaner to implement. With the greedy solution you also have to consider special cases (ie. intervals on the bounds of the array, $$$n=1$$$, all zeroes).

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

for problem B, why does 68349376 give TLE inspite of being n^2logn?

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

 I can't get it. Can somebody explain it please?

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Could you please show the solutions connected to these approaches?

»
4 года назад, # |
  Проголосовать: нравится +2 Проголосовать: не нравится

Wow, I have completely different solution to D. Mine is in fact much more complicated and fact that time of collision when both particles go facing each other is strictly less than time of collision when they go in the same direction is in fact crucial to my solution, while model solution just don't care. But I'm too lazy to describe it cause it's long x_0.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится +36 Проголосовать: не нравится

My (maybe simpler) solution for 1286D - LCC:

The main idea is still sorting all the collisions and calculate the probability that first $$$i$$$-th and $$$(i + 1)$$$-th will occur. When it comes to calculating these probability at some certain time, I have some following observations.

Lets first denotes the types of two protons colliding: $$$0$$$ — moving toward each other, $$$1$$$ — both moving to the left and $$$2$$$ — both moving to the right

Observations:

  1. If we only take collisions of type $$$0$$$ into account, a consecutive segments where every protons have collisions with its neighbors, can only accept patterns like this: $$$«««...»»»$$$. Which means, we can always find a position which its left part will only move to the left and vice versa. Let's also denote this as special positions.

  2. Events of type $$$1$$$ and $$$2$$$ will narrow the set of possible candidates for such positions in observation 1, but they still lie in a consecutive segment. It's easy to see that if some pair of $$$i$$$-th and $$$(i + 1)$$$-th protons can not both move to the left, we can not put such position anywhere in the right of them. So each reduction of these events is equal to banning a prefix or a suffix of possible candidates.

For a consecutive segment with the range of special positions, we can easily calculate the sum of probability that this segment will obey the mentioned pattern with prefix product array for moving to the left, suffix product for the right, and prefix sum of product of them (just some easy work on paper).

When we connect two components with some event of type $$$0$$$, it's a few casework to figure out the resulting component's range of special positions. And since events of type $$$1$$$ and $$$2$$$ always occur later than corresponding events of type $$$0$$$, two protons of these events always lie in the same components. So we just need to narrow the range and recalculate the probability.

My code: 68383975.

  • »
    »
    4 года назад, # ^ |
    Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

    Hey,

    I have some problems with understanding of the LCC problem.

    Could you, please, briefly explain why in the third example the correct answer is 150902884?

    To be honest, when I read the problem description I expected the solution to be a real number.

    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится +10 Проголосовать: не нравится

      Well it's already stated in the statement that you need to print the answer as $$$P . Q^{-1}$$$ where $$$P/Q$$$ is the real number you mentioned.

      • »
        »
        »
        »
        4 года назад, # ^ |
        Rev. 2   Проголосовать: нравится +10 Проголосовать: не нравится

        Thanks for the reply.

        But I am still confused. I was always taught that integers don't have an multiplicative inverse (besides -1 and 1). In addition, it is mentioned that $$$Q$$$ is a natural number, which does not have additive inverse as well. What does $$$Q^{-1}$$$ mean then?

        Could you give an example? For instance, if the answer is 99/123, what should I output?

        • »
          »
          »
          »
          »
          4 года назад, # ^ |
            Проголосовать: нравится +8 Проголосовать: не нравится

          Here's how $$$123^{-1}$$$ modulo $$$998244353$$$ looks.

          For $$$99/123$$$, just multiply them together and mod the result by $$$998244353$$$.

          • »
            »
            »
            »
            »
            »
            4 года назад, # ^ |
            Rev. 2   Проголосовать: нравится +5 Проголосовать: не нравится

            Thanks a lot! Now it makes sense!

            Basically, ($$$123^{-1}$$$ mod 998244353) is 32463231, since 32463231*123 mod 998244353 equals to 1.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится
  • I still have no idea why 1st submission got accepted while 2nd one was not accepted.
  • 1st solution
  • 2nd solution
  • Can someone help me, I only changed s = s + s[i] to s+=s[i]
»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can someone point out what's wrong in my DP approach to C-Garlands? https://codeforces.com/contest/1287/submission/68427357

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

plz anyone tell me what is wrong in my approach of question B Hyperset 68457311

  • »
    »
    4 года назад, # ^ |
    Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

    First: O(n^3k) has no chance of passing a maxtest

    Second:

    for (int i=0;i<a-2;i++)
        {
            for (int j=i+1;j<a-1;j++)
            {
                for (int k=i+2;k<a;k++)
    

    These three loops will run over some unordered triplets more than once.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Looks like, even though according announcement 1286E - Fedya the Potter Strikes Back will accept any answer by modulo 2^64, current checker wants full integer or there is some bug with comparison. unsigned long long didn't accepted for me, but bigint accepted.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

if (a[i] % 2 || !a[i]) dp[i][j][1] = min(dp[i — 1][j][0] + 1, dp[i — 1][j][1]); if (a[i] % 2 == 0 && j) dp[i][j][0] = min(dp[i — 1][j — 1][0], dp[i — 1][j — 1][1] + 1);

The above code is a sanp from a garland problem, please can anyone explain what does i,j and 1 mean, i'm not able to get it with any comment

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

time complexity of question Dic2-C is O(n) not O(nlogn)

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

How to do OR convolution on independent subsets?

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can anyone please help me by telling that what am I doing wrong in my DP approach for problem C Garland.Click here to see my code.

»
4 года назад, # |
  Проголосовать: нравится -8 Проголосовать: не нравится

can someone checkout where is my solution failing?

https://codeforces.com/contest/1287/submission/69256035

for problem C Div 2

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can someone explain the masking and segment tree used in Div. 1 D: LCC?

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

[ignore; Codeforces had a slowdown and caused me to post twice]

»
4 года назад, # |
Rev. 6   Проголосовать: нравится 0 Проголосовать: не нравится

Since I struggled with understanding the solution for 1287F - LCC too, here's my sample code and explanation that may help others:

Sample code: 70597982

Explanation:

Each segment (including the "segment" consisting of a single particle) is represented by a tuple of 5 values, $$$(ll, lr, rl, rr, ban)$$$. E.g. $$$rl$$$ represents the probability that:

  • No collisions in this segment AND
  • Leftmost particle moves right AND
  • Rightmost particle moves left

while $$$ban$$$ is an enumerated value or bitmask indicating a ban on certain possible collisions with this segment's right neighbor, only used when the segments are combined.

Assume no collisions and no bans when first building the segment tree. We find all possible collisions and sort them by the time of collision (represented in my collision tuple as the fraction $$$\dfrac d v$$$, i.e. distance over relative velocity). We iterate through them; to find the probability that a particular collision comes first, we get the probability before the ban, ban the collision by changing the $$$ban$$$ value in the leaf node corresponding to the left particle, then get the probability after the ban. The probability we want is then $$$p_{before} - p_{after}$$$. We leave the ban in place for later collisions.

When combining two segments, consult the left segment's $$$ban$$$ to decide what values should be added to the $$$(ll, lr, rl, rr)$$$ of the combined segment. The combined segment inherits the $$$ban$$$ value of the right segment. This is represented by the function plus in my Seg class.

Due to the expense of combining operations and frequent querying for the entire segment tree, the segment tree code, based on the type described by this blog entry, has been modified to always round up to the nearest power of two for the internal size. This allows access to the root in $$$O(1)$$$ time, and saves about 400 ms in my example.

»
4 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

I solved Div1D(LCC) with Segment tree, but I see one of the tags for it is matrices. Could it be another solution? If true. Could anyone show me how to solve it?

Update: After reading some users using matrices a while, I found out that using matrices only make the source code cleaner and the main idea is still Segment tree

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can someone please explain the editorial approach of Div1-B.

»
4 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can somebody clear up the explanation for LCC??

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

In the problem Numbers on a Tree, What is the meaning of Rightarrow, leq etc?

»
2 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Can someone point out what am I missing in DIV1 A problem - https://codeforces.com/contest/1286/submission/141400274

»
2 года назад, # |
Rev. 3   Проголосовать: нравится 0 Проголосовать: не нравится

UPD:

After getting accepted, I found that it required the real answer, instead of the value modulo $$$2^{64}$$$.

I was confused why the solution used unsigned long long passed, but I couldn't find it anymore.

Maybe it's my careless mistake (to see such a solution). I'm sorry for that.


I'm curious about the judgement of the Div.1 E, because the annoucement said:

In this problem, any answer which is equal to the correct answer modulo 2^64 (which has the same remainder of division) will be accepted.

and the different answers will lead to different results of decryption of $$$c_i$$$, which will lead to multiple answers.

The code of the editorial used BigInt realization, while many submissions used unsigned long long or __int128, so it is theoretical that the situation above will appear.

Is it because the real answer don't excceed $$$2^{64}-1$$$ so that nothing happened?