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

Автор Lewin, история, 7 лет назад, По-английски

Hello everyone!

I’d like you to invite for CodeChef March Cook-Off that will start at 21:30 IST of 19-th March 2017 (check your time zone here) and will last 2.5 hours.

I am the author of problems and editorials, while Errichto is the tester. There are also some other people who helped with translations and miscellaneous issues who I will fill in later.

There is no registration required, anybody with a CodeChef handle can participate. Top participants can win CodeChef laddus (details on the contest page).

You will be provided 5 problems. There's one problem that shows a style of problems I would like to see more in competitions. Let me know what your thoughts are after the contest.

Hope to see you all on the leaderboard!

  • Проголосовать: нравится
  • +23
  • Проголосовать: не нравится

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

Why there is no such type of blog on codechef discuss forum as there was for for the past 2 contests, but there is a blog here on codeforces.

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

remainder: the contest will start in less than 4 hours

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

Why is it so hard ? xD

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

so tough !!!! Even Nicky Minaj is finding it difficult :p :p

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

Why are we randomly extending the contest by 15min?

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

Errichto Why was i getting WA on correct solution for 3rd problem RAINBOW? Hope there's better testing next time :p

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

How to solve INCXOR? For n = 2, I was able to brute force that answer is 230·(231 - LSB(max) + 1) where LSB(max) = 2 power log2(maximum value). Is this extendable?

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

    You can use digit DP using the state (index, b_mask, xor_mask). index ranges from 30 to 0 (inclusive). b_mask and xor_mask are masks of size n-1. We assign the bits of b in levels, level 30 to level 0. The ith bit in b_mask is set if b[i] < b[i+1] using some previously assigned bits in indices [idx+1, 30]. For each level, just check all possibilities of assigning bits to that level in b[].

    Code

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

Very sad story, I ranked 10 in Rest of World when the original timer ended. I was very happy that I can gain some more laddus and get a step closer to have the new cool prizes.

After eating my cup noodles and got back to my computer, I found that my rank dropped to 11. When I first noticed that the contest was extended by 15 miuntes, only 2 minutes left and nothing I could do.

Goodbye my laddus :(

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

    "March Cook-Off 2017 has been made unrated." You are saved. :)

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

      Whatever it is rated or not, my laddus are gone :\ (unless those ranked top 10 when original timer ended are also rewarded)

      And personally, I would like this round to be rated as I am quite sure that my rating will increase :D

      Anyway, it is still fair for the round to be unrated as I believe many contestants are affected due to the data issue.

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

Can someone tell me the intuition behind the formula given in the Yet Another Card Game Editorial

p * (r / (r+b)) + (r+b-p) * (b / (r+b))

Also how to come up with above formulas ?

Can someone share his/her approach in detail ?

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

    The intuition is that all strategies will lead to the same expected value. Intuitively, the cards are played randomly, and the moves you have are fixed, so there's nothing you can really do to "beat" the randomness there in this case.

    We can get the final expected value by linearity of expectation. For a red token, it has probability r/(r+b) of getting matched with a red card. For a blue token, it has probability b/(r+b) of getting matched with a blue card. So, the final formula can be derived from an application of linearity of expectation.

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

      I really can't understand when cards are getting discarded, how we are using p times r/(r+b). I read it on codechef too still can't understand. Please can you elaborate a bit.

      We can get the final expected value by linearity of expectation. For a red token, it has probability r/(r+b) of getting matched with a red card. For a blue token, it has probability b/(r+b) of getting matched with a blue card. So, the final formula can be derived from an application of linearity of expectation.

      Won't r and b change after every extraction of token?

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

        The probablity that a card is matched with token of same color is not dependent on any one case. It's calculated as follows. Let us denote tokens by T1, T2... Tr + b where tokens T1 to Tr are red and Tr + 1 to Tr + b are blue tokens. Now for a token Ti where 1 ≤ i ≤ r, we have to find the probablity that it's matched with a red card. If we consider all possible ways to pick the cards, it will be , let us denote it by x. Now lets fix at any 1 ≤ i ≤ r a red card which means that at ith turn we'll pick a red card. Considering this the total number of cases when ith turn will be a red card are , let us denote it by y. Now obviously, the probablity that ith card is a red card is which you can simplify is nothing but and since we have proven it for a general 1 ≤ i ≤ r. The expectation is therefore . You can prove similarly for blue cards too.

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

    First, let us denote random variable X = Total Score at the end of all the turns. Now X = where Xi denotes whether the token at ith turn matched with a card or not. Now since expectation value follows linearity, therefore we can apply E(X) = . So, how to calculate E(Xi)? We know that it doesn't matter in this that Xi is dependent on Xj or not. So we can simply write E(Xi) as . Now, to sum over all Xi, we can see that first term will only appear when for p red tokens and second term will appear for r + b - p blue tokens, hence the sum over all Xi's is .

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

    Alternatively use a greedy approach. At each step,take the token of that color which has more coins. After taking that token,reduce the expected no of red and blue coins with probability of getting that coin.

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

I am sorry for invalid tests (c[i][j] = 0) in RAINBOW and thus extending the contest. We made some change in constraints there one day before the contest and I didn't modify my validator (program with asserts) — I will try not to let it happen again. And thanks for nice problems, Lewin!

If you think problems were hard, I encourage you to upsolve them. Upsolving is even more valuable for you skills than participating in contests itself.

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

Can someone formally prove the correctness of the solution for Yet Another Card Game.

Editorial Link

I am still not getting the intuition that why should every strategy be optimal?

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

    If at every move , if we take only red token ,then expected points are equal to N.
    If at every move , if we take only blue token ,then expected points are also equal to N.
    This means , at any move, we can either chose red token or blue token.

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

So is it unrated or when is rating going to be updated?

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

Has anyone received their laddus points?

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

    It takes time for rating updates on CodeChef. For example, ratings for March long challenge which ended on 13th March have not been updated yet. So, laddu points are given only after rating update.