When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

sugim48's blog

By sugim48, 5 years ago, In English

The contest was postponed to 2019-01-06(Sun) 11:00-16:00 UTC.

Hello, Codeforces!

We will hold Educational DP Contest at AtCoder on Saturday.

About the Contest

This is an unofficial contest to practice DP (Dynamic Programming). We selected 26 DPs, mostly basic ones, and prepared a problem to learn each of them. Test your skills during the real contest, and brush them up after it ends.

Details

Rules

The rules for ABC, ARC and AGC apply. The important points are:

  • This is an individual match; no teams allowed.
  • Revealing the solutions to others during the contest is prohibited.
  • The penalty for an incorrect submission is 5 minutes.

Notices

  • The problems may NOT be arranged in ascending order of difficulty.
  • There are many famous problems.
  • The contest is not intended for experts such as reds (anyone can compete, though).
  • It is recommended to use languages that are not too slow (such as C++ and Java).

Staff

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

| Write comment?
»
5 years ago, # |
  Vote: I like it +16 Vote: I do not like it

Nice idea

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

the problems with u all setters are that for u even div1 e problems are easy ..

so cant guess what easy means here

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

    Don't worry, red coders are able to set up contests with easy problems.

    flashback of my rounds

    Okay, some red coders.

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

So which level are the problems in? Will the problem set be interesting for orange coders? and purple?

Since you say they are basic ones, it sounds like it should be somehow like div2 contests?

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

    The difficulty levels of the problems range from Div2 A to Div2 E. However, it may be challenging even for Div1 coders to solve all the problems in five hours.

»
5 years ago, # |
  Vote: I like it +78 Vote: I do not like it

Neat idea! Are there any plans to do this with other topics as well (e.g. Educational Combinatorics contest, educational geometry contest, etc.)? I think that could be really beneficial for a lot of people, especially if this contest goes well.

»
5 years ago, # |
  Vote: I like it +31 Vote: I do not like it

Very nice initiative

»
5 years ago, # |
  Vote: I like it +32 Vote: I do not like it

Now this is some serious effort by Atcoder this year to help us strengthen up our DP. Hope they continue to come up with such good ideas.

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

I wanted something like this

»
5 years ago, # |
  Vote: I like it +40 Vote: I do not like it

Will an english editorial be posted when the contest ends ?

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

    If this can be done then it will be really helpful.

»
5 years ago, # |
  Vote: I like it +23 Vote: I do not like it

Why is the contest postponed?

  • »
    »
    5 years ago, # ^ |
    Rev. 9   Vote: I like it +13 Vote: I do not like it

    As mentioned in the sugim's tweet on twitter it is due to the codeforces round clashing with the atcoders' round.

    "1/5 (土) 20:00 — 25:00 に開催予定の DP まとめコンテスト (https://atcoder.jp/contests/dp ) ですが、1/5 (土) 25:30 — に Codeforces のコンテストが生えたので、1/6 (日) 20:00 — 25:00 への移動を検討しています。ぜひアンケートにご協力ください。"

»
5 years ago, # |
  Vote: I like it +17 Vote: I do not like it

Nice idea to test how good you are in dp :DDD

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

Reminder: The contest starts in an hour.

»
5 years ago, # |
  Vote: I like it +14 Vote: I do not like it

Are questions sorted by difficulty?

and thanks for this ^^

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

    Read the blog.

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

      Can you please tell the approach to solve M-Candies using recursive dp ?

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

        You have to use prefix sum concept otherwise you cant solve them within 2 secs

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

    No the questions won't be sorted by difficulty

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

    Difficulty according to solve count during contest: A B C D H F E I G K L M N P S O Q R J U Z Y X T V W

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

How to solve Permutations in less than n3 ?

  • »
    »
    5 years ago, # ^ |
    Rev. 4   Vote: I like it +53 Vote: I do not like it

    dp[i][j] — The number of ways to make a permutation of length i + 1 that respects the first i signs and the last element is j (j ≤ i + 1).

    If s[i] is  >  then

    Otherwise

    To do this in O(n2) use prefix sums

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

      I don't really get it. Why would it be permutation? Won't we count the ways where j is used on some earlier step?

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

        Hint: See that Rudy358 used >= instead of > in his first equation.

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

          Ah, so we kinda insert j to the previous step permutation by increasing all the values greater or equal to j by 1 and it doesn't break anything. Yeah, that makes sense, nice.

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

            oh wow..that's very neat trick. loved it! :D

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

            awoo I was looking for this one line for so many days. Gods do live among us ;-; God Work Awoo

          • »
            »
            »
            »
            »
            »
            7 weeks ago, # ^ |
              Vote: I like it 0 Vote: I do not like it

            Can you please explain in detail I tried to wrap my head around this fact but I couldn't get it.

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

      Loved the solution

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

    dp[i][j] denotes the number of permutations of 0, 1, ..., i - 1 such that the last element is j and all the first i - 1 inequalities are fulfilled. You can easily update this dp in O(1) with prefix sums, giving O(n2) complexity.

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

    I solved it with inclusion-exclusion principle, dividing the sequence into monotonously increasing parts. After writing down each terms, calculate dp[i] := sum of terms ending at i. That can be done in O(n^2) time. (I couldn't come up with simpler dp...)

»
5 years ago, # |
  Vote: I like it +33 Vote: I do not like it

Thanks very much for contest ! When editorial will be available ?

»
5 years ago, # |
  Vote: I like it +14 Vote: I do not like it

How to solve 0-1 Knapsack with weights <= 1e9?

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

    In the given problem the values were  ≤ 1e3, so .

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

    You need to make a dp[N][V] — what is the minimum weight you need to use to get the value V in the first N items. Then just iterate over the dp table to find the maximum value that requires less than W space.

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

      Can anybody explain the solution of E for the below test case?

      6 15
      6 5
      5 6
      6 4
      6 6
      3 5
      7 2
      

      Problem link

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

    Btw, there is also dp[val] solution (val<=1e5, maximum possible value) where for each i<=n check if there is j>val[i] such that adding wgh[i] to dp[j-val[i]] will minimize dp[j]. (1<=j<=val). But in order to not overlap with updates (if you go from 1 to val), either iterate from val to 1, or store all changes in vector and update it after iteration.

»
5 years ago, # |
  Vote: I like it +14 Vote: I do not like it

The contest was very nice, i didn't manage to solve quite a few problems(i got 18), which is a good thing since i will be able to solve them now and learn new things :).

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

How to solve Sushi?

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

    I even don't understand it, do you?

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

    If you have k empty piles out of n, the expected value of the number of steps to go to different state increases by . The rest is just dp[cnt1][cnt2][cnt3] with 3 transitions.

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

      Hey! I am really weak at expected value problems. Can you also explain the recursive relations?

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

        You basically have three options to pick from some state (cnt1, cnt2, cnt3). These are: eating from a pile with 3 with probability , from a pile with 2 with probability and from a pile with 1 with probability . So that gives you

        + +

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

          Still can't understand the recursion? :(

          Can someone(awoo) please explain it?

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

            The state is: how many piles of size 1, size 2, and size 3 there are, and E[][][] is the expected number of remaining turns. At the current step, we know each of the probabilities of picking a stone from a pile of size 1, 2, 3, or empty pile. The empty pile leads to the same state, while the others lead to states whose E[][][] value are already computed. Eventually, you will be able to solve an equation E[c1][c2][c3] = 1 + prob(empty) * E[c1][c2][c3] + (stuff in terms of previous dp values) which gives you the same formula as PikMike posted.

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

              Yeah I understood. Thanks ksun48!

              vintage_Vlad_Makeev's code helped me a lot. Very well written and self explainable.

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

                How to calculate expected number of turns? Process for finding expected number of turns? Please explain through sample input and output

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

              Why extra "1" is added??

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

                Current step always uses a turn no matter what happens, the rest of the sum is the expected number of additional turns after this one.

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

                Proof of adding 1:

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

          Thanks a lot, PikMike and ksun48!

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

          Correction in what awoo posted: The probability of picking a pile with i stones should be $$$\frac{cnt_i}{cnt_1 + cnt_2 + cnt_3}$$$ given that we are only considering non empty piles now.

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

            exactly...

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

            Can you explain the order of iteration... unable to figure it out!!

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

          How is the output more than 3n . For example in last test case . Since, die giving 1,2...,n have equal probabilities , each dish should be picked once in first n operations and thus each dish is picked thrice in 3n operations . And none of the dishes have more than 3 Sushies , so well how come more than 3n operations is required in some test cases ? Please help me with this :")

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

      awoo How do you find the formula , Did you use something easier than actually evaluating arthmetic-geometric progression, ( )

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

        I just calculated this progression for like 100 iterations and guessed the formula. No idea about the proof.

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

          A more intuitive way (for me) is to just write the dp as

          and move to the left hand side.

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

            Why extra "1" is added??

            • »
              »
              »
              »
              »
              »
              »
              5 years ago, # ^ |
              Rev. 4   Vote: I like it +10 Vote: I do not like it

              let $$$k = a + b + c$$$

              $$$\mathbf{E}(a,b,c)$$$ := Expected no. of trials required to reach $$$(0,0,0)$$$ from $$$(a,b,c)$$$

              $$$\mathbf{E}(a,b,c) = \frac{n-k}{n} * (1 + \mathbf{E}(a,b,c)) + \frac{a}{n} * (1 + \mathbf{E}(a-1,b,c)) + \frac{b}{n} * (1 + \mathbf{E}(a+1,b-1,c)) + \frac{c}{n} * (1 + \mathbf{E}(a,b+1,c-1))$$$ or $$$\mathbf{E}(a,b,c) = 1 + \frac{n-k}{n} * \mathbf{E}(a,b,c) + \frac{a}{n} * \mathbf{E}(a-1,b,c) + \frac{b}{n} * \mathbf{E}(a+1,b-1,c) + \frac{c}{n} * \mathbf{E}(a,b+1,c-1)$$$

              hence, $$$\mathbf{E}(a,b,c) = \frac{n}{k} + \frac{a}{k} * \mathbf{E}(a-1,b,c) + \frac{b}{k} * \mathbf{E}(a+1,b-1,c) + \frac{c}{k} * \mathbf{E}(a,b+1,c-1)$$$

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

              My understanding for the reason why we have to add 1: To reach state $$$(cnt_1, cnt_2, cnt_3)$$$ we can go from 4 states $$$(cnt_1, cnt_2, cnt_3)$$$, $$$(cnt_1-1, cnt_2, cnt_3)$$$, $$$(cnt_1+1, cnt_2-1, cnt_3)$$$ or $$$(cnt_1, cnt_2+1, cnt_3-1)$$$ with probability as above. For each "from" state, we must take the last fixed turn to reach the required state, for example if we go from $$$(cnt_1-1, cnt_2, cnt_3)$$$, we have to choose 2 for current turn. Similarly for all other states, so we add 1 because of each last fixed turn to reach our required state.

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

            thanks.

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

        It is well-known from statistics that for the geometric distribution (counting number of trials before a success, where each independent trial is probability p) the expected value is . In this case, to hit a non-empty pile, so the expected value of steps to hit a non-empty pile is as desired.

        There are several ways to prove it here. Indeed, arithmetic-geometric progression is one.

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

What is testcase 1_03 for E?

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

    Please share what's special in that test case,in case you come to know about it.I am also stuck only for that. Thanks in advance.

»
5 years ago, # |
  Vote: I like it +9 Vote: I do not like it

In Matching I had O(n2 * 2n ) solution, how to optimize it? I feel really stupid

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

    You should have tried to submit it without optimization. I got AC with it in 500ms.

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

      Well I've got TLE in last 4-5 testcases

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

        You are doing it iteratively and actually doing all 2^n * n^2 steps but many states are of no use (you will never visit them as they are not possible). If you write the same solution recursively it will pass as not all states will be visited. See: https://atcoder.jp/contests/dp/submissions/3947427

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

          I don't think that's the case. I solved it iteratively in $$$O({2^{n}.n^{2}})$$$ with some pruning, and got it passed in $$$268ms$$$ Here's the link

          EDIT : I didn't consider pruning while calculating the complexity and it's not actually $$$O({2^{n}.n^{2}})$$$. Can someone tell how to do the analysis considering pruning?

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

    Hint: if you know mask of already paired women, you know the number of already paired men (it's just number of 1 bits in mask).

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

    I think Expected Solution is O(n*2^n)

»
5 years ago, # |
  Vote: I like it +20 Vote: I do not like it

I hope this is the first of many Educational Rounds to come from AtCoder. Looking forward to more such good content.

Here are my solutions to the problems of this contest, in case anybody wants to refer.

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

    You did coins but not the problems before it? Or are you still uploading problems.

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

    I solved Coins in the same way as you did but got WA. My solution What mistake did I make?

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

      Try setting the precision to a higher number plus try putting (double) in front of every multiplication.

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

        They mentioned absolute error actually, sad

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

          They were checking upto 9 digits instead of the usual 6. :)

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

    I like your idea, so i have uploaded the codes for the problems i solved. I will be adding more problems as i solve them and maybe even the explanations to some problems if i'm not too lazy.

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

Is CHT of Z really easier than rerooting of V or inclusion-exclusion thingy of Y?) Or is there any solution without CHT?

Btw, how does one generate tests for CHT dp? Like what stops me from maintaining MAGIC best by some parameter positions and trying to update from them all (like in O(n·MAGIC))?

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

    Haven't even read Frog 3, the problem is actually easy with LiChao or something similar.

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

      Yeah, I've heard that CHT is easy enough with LiChao but I've never put myself to learn it (or any other implementation of CHT). I've always thought that CHT is really advanced topic. Especially compared to problems V or Y.

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

        LiChao is quite easy actually. I did Z with LiChao in like 10 mins while Y took me 30-40 minutes. I found Z to be easier but it may be because i practiced dp optimizations not too long ago. Didn't get to solving V during the competition.

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

          I coded in 5 minutes but have been debugging for almost 10 minutes. Here is my code I used dynamic LiChao because I had implementation already but why it doesn't work?

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

            Can't really tell what is wrong with your code. Here is my implementation of LiChao(The set function is nicer than in your implementation). I got it from this site. It explains quite nicely how it works and has a pretty easy to memorize implementation.

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

              This is where I learned it from too but in my implementation, I break it to all possible cases of intersections because It is easier for me to get it right

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

    If you have a template, (I used https://github.com/kth-competitive-programming/kactl/blob/master/content/data-structures/LineContainer.h), it's one of the easier problems.

    V and Y are simpler concepts IMO but reequire more not-template code.

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

      Well, yeah, probs. It seems I just somehow expected everyone to code all problems from scratch. :D

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

    I really like tests for Z! (I can't come up with a MAGIC solution which passes even half of them :D) sugim48, can you please show me some generators for it?

    UPD: Why did I comment that instead of writing a PM? :D

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

    Is there an easy way to do the rerooting in V? I had to make a segment tree for every node to store the already calculated values for its neighbours to make my solution not TLE. I understand why it TLEs without the segtree but cant figure out something simpler to fix it.

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

      You store partial products for neighbours (both prefix and suffix) and combine them to recalc the value.

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

Why is the limit of n so big in problem U? I spent 20 minutes trying to optimize it without realizing that O(2^32) will fit TL. Is there a faster solution?

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

    It can be solved in O(3n) time. In fact, and there are only 3n pairs (mask, submask).

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

      really nice :D

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

      why the number of pairs of (mask, submask) is 3^n?

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

        Consider some bit. There are 3 possibilities for it: it is equal to 1 in both mask and submask, it is equal to zero in both mask and submask and it is equal to 1 in mask and 0 in submask. So there is one-to-one correspondence between ternary masks of length n and pairs (mask, submask) of length n.

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

          Ah I see, so there will not be case when a bit in mask is 0 whereas the bit in submask is 1 because the when the submask is 1...it automatically change the bit in mask to 1 as well (choosing the unchosen one will change the state to chosen in both masks). Is that correct?

          Thanks a lot :D

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

Can someone explain the editorial of problem N,slimes?

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

    dp[l][r] — minimum cost to merge from l to r Notice that in the last operation we will merge two consecutive blocks, and their total sum will be the sum of all slimes. So dp[l][r] = min(dp[l][k] + dp[k][r]) + a[l] + a[l + 1] + ... + a[r]. Which is O(n3)

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

      Are you sure? The problem seems to me similar to Matrix Chain multiplication, which is O(n3) in time.

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

      Hey, can you tell me a counter case for my algo. I trace all slimes and combine which require lease cost. And I followed this greedy technique. I cannot think of any counter test case...

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

        4

        20 15 10 16

        Minimum possible cost is 122. Your greedy approach gives 127.

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

How about the problem STONES

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

How to solve R-Walks?

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

    The TLE is caused by visiting a state over and over.

    Remember a node can have many parents.

    I suggest you count the answer for each node on a topdown manner , and when visiting it again just return its value.

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

Can someone explain why/how Convex Hull Trick is used for Z?

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

    We have dp[i] = min(dp[j] + (h[i] — h[j])^2) + C , (h[i] — h[j])^2 = h[i]^2 + h[j]^2 — 2*h[i]*h[j], dp[i] = min(-2*h[i]*h[j] + h[j]^2 + dp[j]) + h[i]^2 + C, the line is (-2*h[j] , h[j]^2 + dp[j]).

»
5 years ago, # |
  Vote: I like it +24 Vote: I do not like it

W is almost https://csacademy.com/contest/archive/task/popcorn without alien's trick (this problem is W but with positive weights and every position has an equal negative weight). I'll use this opportunity to ask: how to solve it faster than O(n * logn) with a lazy seg tree? Since O(N * log^2) is TLE for POPCORN.

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

Any hint on Problem R(Walks) if the constraints on N would have been higher ?
With given constraints on N, it could be easily solved using Matrix Exponentiation but what if constraints on N were higher.

»
5 years ago, # |
  Vote: I like it +13 Vote: I do not like it

Can someone tell me the solution for problem X-tower and W-Intervals? I can't figure out the solution for these problems during the contest.

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

    Problem X: Sort all blocks according to w + s decreasing. Now DP(i, j) is the maximum value of stack containing blocks for the first i blocks and current stack can contain more j unit weight.

    Transition is very similar to Knapsack problem:

    • If we don't choose block i, then dp(i, j) -> dp(i + 1, j)

    • If we choose block i, then it must satisfy j >= weight[i], dp(i, j) + value[i] -> dp(i + 1, min(j — weight[i], solid[i]))

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

      Can you prove that sort all blocks according to w + s decreasing is the right order?

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

        Think about how you would order the blocks if there were only 2 of them, lets say the first has w1 ans s1 and the second has w2, s2. Lets consider both orderings:

        If you put the first on the bottom, the strength of the tower will be s1-w2.

        If you put the second on the bottom, the strength of the tower will be s2-w1.

        So we want to take the first as the bottom one if s1-w2 > s2-w1.

        Which is equal to saying s1+w1 > s2+w2. There you go, we want to put the ones with greater s+w on the bottom.

        For more problems like this one check out these videos by Errichto: part1 part2

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

          Why would the strength of the tower be matter?

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

            If you want to put more blocks above the first 2, you want to make it so you can put more weight on top.

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

              Understood, the more weight you can put on top, the change of getting optimal answer increase.

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

    Problem W:
    l[v] — left of v-th query
    r[v] — right
    a[v] — score for v-th query
    dp[i] — answer for prefix with length i if s[i] == '1'
    in naive solution dp[i] = max(dp[j] + summ(a[v])) for all j < i , for all v if l[v] <= i <= r[v] && !(l[v] <= j <= r[v]))
    it works in O(n^2)
    to improve it you need to use segment tree witch can give you max on prefix, for dp[i] = get(0, i — 1)
    so you need to keep tree valid at each iteration
    if you encountered left edge of some query make += a[v] on segment (0, l[v] — 1)
    if you encountered right edge of some query make -= a[v] on segment (0, l[v] — 1)
    when dp[i] is calculated += dp[i] on segment (i, i)

    UPD: "r[v] — 1" to "l[v] — 1"

»
5 years ago, # |
  Vote: I like it +35 Vote: I do not like it

will There be any Editorial??

»
5 years ago, # |
  Vote: I like it +98 Vote: I do not like it

I would like to request AtCoder to hold more such contests on various topics, such as one on range queries and updates, one on geometry, one on number theory and combinatorics, one on graphs, etc., similar to the dp one (where known methods are used in various ways to solve the problems).

I think this would be a great idea, helping many of us gaining the basics of topics quickly. Holding them at a every 10 days or so time interval would allow enough time to prepare the contest as well as give contestants time to upsolve the last one. I hope this is seriously considered!

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

    Totally agree, that would be awesome :D

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

How can i see testcases which my solution failed in this contest.

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Thanks a lot to all the authors, the problems are really exciting.

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Can anybody please explain the solution for problem Y — Grid 2 as well? I'm kinda stuck. :) Basically, on how to calculate the value of so many 's when both n and r can be upto 1e5?

»
5 years ago, # |
  Vote: I like it +14 Vote: I do not like it

How to solve V (Subtree)?

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

    Let's calculate two values for every node after rooting the tree:

    • down[node] = number of ways to paint the descendants of node when node is black

    • up[node] = number of ways to paint vertices not in the subtree of node when node is black

    The answer for any node is the product of these values, down[node] × up[node]

    down[node] is easier to calculate, it is (we let the subtree rooted at son all white or we have down[son] ways). The base case is when the node is a leaf, we have 1 way to color it black.

    up[node] is almost the same, (the 1 summing in the beginning comes from letting the parent white).

    The trick part with up is that the modulus will not always be co-prime with the values we got (so we won't be able to calculate the inverse modular by, let's say, maintaining the product of all sons and dividing by the current son down value to get the up[node] fast). The solution is to keep a prefix and suffix product of the down values for the sons of a node, this way we don't have to divide or use modular inverses.

    • »
      »
      »
      4 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it
      //This code is solely the property of StarnyC
      #include<bits/stdc++.h>
      using namespace std;
      #define ll          long long
      #define int         long long
      #define pii         pair<ll,ll>
      #define Go_Baby_Go  ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);cerr.tie(0);
      #define endl		'\n'
      
      int ans[100005],m;
      vector <int> adj[100005];
      map <pii , int> dp;
      
      int dfs(int par, int child)
      {
      	if( dp[ {par, child} ]  ) 
      		return dp[ {par, child} ];
      	
      
      	int temp = 1;
      	for(auto i:adj[child]) {
      		if(i==par) continue;
      		else { temp *= dfs(child, i) ; temp %= m; }
      	}
      
      	temp++;
      	dp[ {par, child} ] = temp;
      	return temp%m;
      }
      
      int32_t main()
      {  
      	Go_Baby_Go
      	int n;
      	cin >> n >> m;
      	for(int i = 0; i < n-1 ; i++) {
      		int x , y;
      		cin >> x >> y;
      		adj[x].push_back(y);
      		adj[y].push_back(x);
      	}
      
      	for(int i = 1; i <= n; i++) {
      		ans[i] = 1;
      		for(auto j:adj[i]) {
      			ans[i] *= dfs(i,j);
      			ans[i] %= m;
      		}
      		cout << ans[i] <<endl;
      	}
      
      }
       
      

      I am not able to figure out why this gives TLE although is running correctly for small test cases, one can guess the complexity of the above code is of order O((V+E)*log(V+E)) as the given graph is a tree , which fits in the constraints for the problem. Can you help me out?

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

        one can guess the complexity of the above code is of order O((V+E)*log(V+E)) as the given graph is a tree

        I am not sure this is true, for every edge you call DFS and inside the DFS you loop through every edge

        for(auto i:adj[child]) {

        I've put my code for reference of the above explanation

        Spoiler
»
5 years ago, # |
  Vote: I like it +12 Vote: I do not like it

Hello, everyone. Someone could explain to me how to make the problem Z — Frog 3 into something better than O (n ^ 2). Greetings and thanks in advance.

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

    To solve it in O(n2) we have the following recurrence,

    .

    Now, hi2 + c is constant for fixed i, and we have to minimise the second term.

    Now observe that the second term is of form y = mx + c, with (m, c) = ( - 2hj, hj2 + dp[j]) which we are evaluating at x = hi, which means we can use Convex Hull Trick to compute answer in O(nlogn).

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

      Just to add so there is no confusion, it is actually dp[i] = what you wrote + dp[j]

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

Is there a clean way to implement the solution for U? My solution used approx. operations, which is about 4e8 when n = 16 and ran in 1.9s ( https://atcoder.jp/contests/dp/submissions/3969569 ), but I was curious if you could kick out that k factor from the sum and just get operations, which is like 4e7 on n = 16 and is much nicer.

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

    Yeah, check my submission: https://atcoder.jp/contests/dp/submissions/3948412. Precompute the sum for each mask to kick out the k factor.

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

      I actually did precompute the sums for each mask; that would create a k2 factor, I believe. My k factor was coming from creating all the subset-bitmasks for a given bitmask. Your line for (int ss = mask; ss > 0; ss = (ss - 1) & mask) is a clever way to generate them, that's pretty much exactly what I was looking for. Thanks.

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

        Yeah, that k factor comes when you are generating next_mask.

        For all future readers, to understand more about how this line for generating all sub masks works -

        int ss = mask; ss > 0; ss = (ss - 1) & mask

        You can refer to this.

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

    How to solve U?

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

      You must solve the problem for each subset of the input. Since n=16, we can use bitmasks to keep a dp array of the answer for each subset. On a given subset, try each sub-subset as a potential group and recurse.

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

So i just watched the new episode of Algorithms live where he and his guest talked about an O(n) solution to the problem L-Deque from the dp contest. I found this very interesting and implemented it. In fact, i found it so interesting that im writing this comment to let you all know about it :)

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

In Matching, I failed only at one test. I could not find bug in my code. Can anyone have a look? Thanks. My submission.

Edit: I fixed it. My above code fails for the test "1 1".

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

does there exists better solution for O-Matching than O(2n * n2), or it was intended to pass recursive solutions, while failing iterative?

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

    We can solve in O(2n * n) iteratively as well. We don't need the second dimension. Let k be the number of 'on' bits in the mask. dp[mask] represents number of ways in which first k men can pair with any k women subject to their preferences being matched. We can derive answer for current mask by turning off singular bits from the mask and checking compatibility of the k'th man being placed at this position.

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Can someone explain the states and transitions of dp in problem T-Permutation. It got me thinking for a while now, and still don't get it. thanks in advance

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Nice problems. Anyway how to solve C (vacation)?

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

    dp[i][j] = i'm now considering the i'th day and I did the task j (A or B or C) at previous day((i-1)'th day). So I can't do the task j in this i'th day.

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Can anyone explain any other approach to solving S-Digit Sum, apart from digit dp, well I'm getting a MLE by the digit-dp approach!

Or can you provide an optimization to solve my error!

My submission

Thanks in advance!

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

    you got RE(Runtime Error) not MLE(Memory Limit Exceeded)

    Try again fixing these:

    1. the maximum value of your num.length() can be 10001, not 1005
    2. now if you think, you'll get your state sum is not good enough to be a DP state here as it can be big(<=9*10000) As we just only need to check "The sum of the digits in base ten is a multiple of D", instead of exact sum we can consider a state sum modulo D.
    3. in line 100 you are going to start working with index 0, how you are considering start as 1? Think again.
    • »
      »
      »
      5 years ago, # ^ |
        Vote: I like it +10 Vote: I do not like it
      1. I know, 1005 was made atleast to make my code run...1e5+1 will not run the code, you'll get a compilation error :(

      2. OK, this is naice!

      3. start is a state which specifies whether I'm in the most significant digit of a number or not.

      As far as point 1 is considered check this out

»
5 years ago, # |
  Vote: I like it +13 Vote: I do not like it

How to solve M — Candies?

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

    dp[pos][j] =  number of ways of distributing j candies among [1, pos]. You can use prefix sums for transition between the states. Solution.

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

      can you discuss in details? how the prefix sums will help

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

        Our dp is, dp[i][j] = number of ways to distribute j candies to children from 1 to i.

        Now, if we give k candies to ith child then, number of ways will be dp[i - 1][j - k].

        And now, since k takes all possible values between 1 to a[i]. We have,

        .

        Now notice that j — k takes all values between [j - a[i], j - 0]. Therefore we can use prefix sums to caluculate dp[i][j] in O(1).

        Now We have, dp[i][j] = prefix[i - 1][j] - prefix[i - 1][j - a[i] - 1]

        Notice that we can construct prefix together with dp as,

        prefix[i][j] = prefix[i][j - 1] + dp[i][j]

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Can anyone explain how to do O-Matching problem?

Elaborate The dp states plzz!!

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

    F(mask) = number of ways to match all girls with 1-bit in mask with first P boys (P = number of 1-bit in mask)

    Answer is: F(1111) — full mask

    Transition:

    F(mask) = SUM( F(submask) )

    Where submask all subsets of mask without only one 1-bit (if it is possible to marrige P-th boy with this girsl)

    For example:
    F(1011) =

    if it is possible to marrige 3-d boy with 1-st girl
    F(1010) +

    if it is possible to marrige 3-d boy with 2-nd girl
    F(1001) +

    if it is possible to marrige 3-d boy with 4-th girl
    F(0011)

    We try to match P-th boy to every available girl (1-bit is a free girl)

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

Why this O(MAX_DIGIT_LENGTH * D) solution timed-out for S-Digit Sum given that MAX_DIGIT_LENGTH<=10000 and D<=100 .

UPD: Got it. :) Passing string to the function caused TLE.

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

    Because of this: int solve( string s ,int idx,bool smaller,int rem),
    add "&" here: solve( string & s ,int idx,bool smaller,int rem)

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Can someone elaborate how to solve Problem W — Intervals?

»
5 years ago, # |
  Vote: I like it +13 Vote: I do not like it

How to solve G?

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Can anyone please explain how to solve problem-W Intervals? It's been too long and i ain't able to solve it. Thanks

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Can anyone help me with problem K? I have about 4 5 WAs. What's wrong with this approach?

const int max_n=110, max_k=100010, first=0, second=1;

int n, k, a[max_n], dp[max_k];

int f(int cnt){
    if(cnt <= 0) return false;
    if(dp[cnt]!=-1){
        return dp[cnt];
    }

    int res = f(cnt-a[0]);

    forup(i,1,n){
        res = res && (f(cnt-a[i]));
    }
    return dp[cnt]=(!res);
}

int main() {
    int mn = inf;
    gi(n);gi(k);
    memset(dp,-1,sizeof dp);
    rep(i,n){
        gl(a[i]);
        mn = min(a[i], mn);
    }
    rep(i,n){
        dp[a[i]] = true;
    }
    rep(i,mn){
        dp[i]= false;
    }
    f(k);
    cout << (f(k)?"First":"Second") << endl;
    return 0;
}
»
5 years ago, # |
  Vote: I like it +11 Vote: I do not like it

someone explain the working of segment tree in Question W. Intervals.

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Can anyone tell the idea for R-walk?

»
5 years ago, # |
  Vote: I like it +9 Vote: I do not like it

Why O(nk) is giving TLE verdict for (M)Candies. https://atcoder.jp/contests/dp/submissions/4245869

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

    Your solution is not O(nk). You are looping from 1 to a[0] and from 1 to k inside it. This can in worst case be O(k^2).

»
5 years ago, # |
  Vote: I like it +9 Vote: I do not like it

how to S?

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

Is it possible to see test cases. I keep getting WA for last 2 cases for Digit-Sum. https://atcoder.jp/contests/dp/submissions/4247905

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

What is the intuition behind problem I. Coins?

  • »
    »
    5 years ago, # ^ |
    Rev. 4   Vote: I like it +9 Vote: I do not like it

    On each coin, it can either come up heads or tails with certain probabilities. Make your dp state as dp[i][j] = probability of getting exactly j heads with the first i coin. Then, dp[i+1][j] will depend on dp[i][j] if we don't get heads with the i+1'th coin, or it will depend on dp[i][j-1] if we do get heads with the i+1'th coin.

    Prefix dp (i.e. memoizing with the first i elements) is extremely common and probably is applied for more than half (maybe more than 3/4) of the problems in this contest. The idea of having the second dimension counting the number of heads: that's just something you would learn to see with practice.

»
5 years ago, # |
  Vote: I like it +10 Vote: I do not like it

N-Slimes i am trying to solve this question using greedy and my idea is to merge the segment based on the value of two adjacent elements sum
~~~~~
int n;
cin>>n; vector<ll> v;

for(int i=0;i<n;i++)
{
int x;cin>>x;
v.pb(x);
}
ll ans=0;
for(int i=0;i<n-1;i++)
{
int ind1=-1;int ind2=-1;
ll temp=inf;
for(int j=0;j<v.size()-1;j++)
{
if(v[j]+v[j+1]<temp)
{
temp=v[j]+v[j+1];
ind1=j;
ind2=j+1;
}
}

v[ind1]+=v[ind2];  
ans+=v[ind1];  
v.erase(v.begin()+ind2);

}

cout<<ans<<endl;
~~~~~ this giving WA on test 6. I know DP is the intended solution for this problem and i already solved it using DP but i can't form an edge case to convince myself that how greedy is false here, please help me to find a case where greedy fails.

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

    3 2 2 2. Optimal way is ((3+2) + (2+2)) while your algorithm consider (3+((2+2)+2)).

»
5 years ago, # |
  Vote: I like it +42 Vote: I do not like it

I had a stream where I solved all 26 problems with explanation. You can watch it on my Youtube channel: link. There are timestamps for each problem in the pinned comment below the video.

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

sugim48 Any plans to have another educational on AtCoder. As you might have already realized, the DP has been a huge success. I think you (and other collaborators) may already be considering it, but I can't resist and any rough timeline will be helpful.

»
5 years ago, # |
  Vote: I like it +15 Vote: I do not like it

Hi guys, would you mind publishing the tests for the tasks?

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

Will there be such contests again? I know preparing and testing this lot problems requires hard work but with more people it's feasible in not much time :)

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

how to think this problem problem L, how to design a dp status, thanks in advance

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

    https://atcoder.jp/contests/dp/submissions/15499385 solution for L base cases if array is of size 1 ans is a[i]
    how to think -> try to make a recursive function which will take inputs as range of the array the function can be something like this

    int function(int l,int r){
    {
         if(l==r) return a[l];
         return max(a[l]-function(l+1,r),a[r]-function(l,r-1));
    } 
    

    then try to optimize it i used map but it doesn't work then, eventually i found dp status which was quite easy to find after this and got AC by iterative method

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

need help with my solution for question Q.Flowers. Used persistent segment tree to have time limit of nlogn, but it gives TLE. Is using keyword new so costly ? Can someone hep me optimise this code ?

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

    Similar to UVa 11790, LIS with value map

    $$$dp[h]$$$ := max value LIS ending at height $$$h$$$

    The key point which makes this problem solvable in $$$O(NlogN)$$$ is that heights are distinct, In the $$$O(N^2)$$$ approach,

    //pseudo code
    for (int fl = 1; fl <= n; ++fl)
        for (int ht = 1; ht < height[fl]; ++ht)
           dp[height[fl]] = max(dp[height[fl]], dp[ht] + val[fl])
    

    the query of maximum is in a continuous range which should hint for using RMQ technique (like segment tree) So using segment tree we can have this in $$$O(NlogN)$$$

    //pseudo code
    for (int fl = 1; fl <= n; ++fl) 
      ll mx = queury(1, height[fl] - 1)
      dp[height[fl]] = max(dp[height[fl]], mx + val[fl])
      modify(height[fl], dp[height[fl]]) 
    
    

    Solution code

»
5 years ago, # |
  Vote: I like it -8 Vote: I do not like it

How to solve U-Groupiing?

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

    There are so many comments on this page, and multiple ones explain how to solve U.

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

      I search for 'Grouping', and people just name U =)) thank u, i found it.

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

Can someone help me with the maths part in J sushi? I see the recurrence but am not very familiar with expected value so can someone elaborate it?

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

    Here is my attempt to explain the solution in the best possible manner. Hope this will help you and others as well :)

    First : what really matters is the number of dishes with 0, 1, 2 and 3 sushis and not the order of the dishes. So answer for 2,1,0,2,1 is same as answer for 0,1,1,2,2.

    Number of dishes with 0 sushis is easily determined by N — one — two — three, where one is the number of dishes with 1 sushi and N is the total number of dishes in the input.

    Let F(x, y, z) be the expected moves needed for x dishes with 1 sushi, y with 2 and z with 3.

    Now in the next move we can pick a dish with 1 sushi with a probability of x/N or p1. we can pick a dish with 2 sushi with a probability of y/N or p2. we can pick a dish with 3 sushi with a probability of z/N or p3. we can pick a dish with 0 sushi with a probability of (N — (x + y + z))/N or p0.

    Now try to understand this : F(x,y,z) = 1 + p0F(x,y,z) + p1F(x-1,y,z) + p2F(x+1,y-1,z) + p3F(x,y+1,z-1)

    Here we add a 1 for the current move that we are making. (Note : if you pick a dish with 3 sushi z decreases but y increases)

    This equation now becomes : (1 — p0) F(x,y,z) = 1 + p1F(x-1,y,z) + p2F(x+1,y-1,z) + p3*F(x,y+1,z-1)

    simplifies to: F(x,y,z) = (1 + p1F(x-1,y,z) + p2F(x+1,y-1,z) + p3*F(x,y+1,z-1))/(1-p0)

    This equation can be easily evaluated using dynamic programming :)
    However try and simplify the equation to minimize the number of divisions for higher precision.

    Implementation : https://atcoder.jp/contests/dp/submissions/9551520
    Let me know if you find something is not clear.

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

      thx

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

        Yes I think I forgot to write 1 in the simplified equation.

        Fixing it.

        Implementation is the same thing but I have simplified the equation a little further to minimise the number of division operations.

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

      Thanks man. I was confused with expected value. You have cleared many of my doubts.

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

      Thanks kartik8800. Finally, I got the solution. Well explained.

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

      I have a little doubt in the relation. Exp_val = P(x)*x, so it's the probability of that particular event multiplied by it's own frequency.

      But in the recurrence relation, we are multiplying p1,p2,p3, which are the probabilities for the current state, to F(x-1,y,z) which are previous states.
      What am i missing here?

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

I think it'll be a good idea to add the discuss button on top of this contest's page as well that links to this blog, just like other contests. It'll make the navigation easier for people trying to solve the problems to get to the discussion of solutions of the problems that are in this blog. I do think it's a very useful contest that people will be solving for a long time.

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

It's a shame that their is no editorial: the problems are quite educational. I think a major requirement for a contest to be educational is that it have a well-detailed editorial.

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

Excellent learning series !!! Would be delighted if there is a similar series on Trees & Graphs and/or an advanced DP series...

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

It was a nice contest for learning and practicing DP.

»
10 months ago, # |
  Vote: I like it +2 Vote: I do not like it

where do i find the editorial to this contest problems??