Изменения рейтингов за последние раунды временно удалены. Скоро они будут возвращены. ×

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

Автор CodeChef_admin, история, 2 года назад, По-английски

We invite you to participate in either CodeChef’s November Cook-Off or SnackDown Pre-Elimination, this Sunday, 21st November, rated for all. Cook-Off’s Div-1 and SnackDown Pre-Elimination will have the same problems.

Time: 9 PM — 12 AM IST

On the problem setting panel are:

Users who have qualified to participate in the SnackDown Pre-Elimination cannot participate in the Cook-Off. The Pre-Elimination will be rated for all users participating in it.

The Div-1 Cook-Off and Pre-Elimination ranklists will be merged to determine the winners of the cash/Amazon voucher prizes. Prizes for Cook-Off and Lunchtime Div-2 and Div-3 have been stopped from this month.

Plagiarism checks are being done on all the Snackdown rounds, and will be announced within a week, after which the Pre-Elimination ranklist will be finalized. Cheaters caught will be permanently banned from the platform.

The video editorials of the problems will be available on our YouTube channel as soon as the contest ends. Subscribe to get notifications about our new editorials.

Also, if you have some original and engaging problem ideas, and you’re interested in them being used in CodeChef's contests, you can share them here.

Hope to see you participating. Good Luck!

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

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

Why both contests at same time? Is there any reason?

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

How many testers you want Admin : Yes

Testers:NO

reference previous contest

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

Plagiarism checks are being done on all the Snackdown rounds, and will be announced within a week, after which the Pre-Elimination ranklist will be finalized. Cheaters caught will be permanently banned from the platform.

This puts a smile on my face.

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

    Can we say that Snackdown was a bait from CodeChef for the cheaters? Let's see what will happen!

    ... background: where is my popcorn? ...

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

    Shouldn't plag should be checked in cook-off also if the problem set for both of them is nearly same.?? Literally everyone's solution for div2 D is exact same

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

    But if I tell you the reality, the cheaters have changed their code just a little bit such as func name or added some extra lines and they are not being taken into consideration. If you don't believe me then go to the slippers problem and check the successful submission check the last 100 and more than 90 have the same code just a bit changes

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

Prizes removed from div2 and div3 and I wasn't able to win once.

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

The Pre-Elimination will be rated for all users participating in it....

Then if i attend only on pre-elimination then i rated as global round of all div, sir ? CodeChef_admin

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

How many will qualify for elimination?

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

Reminder: Contest starts in ~45 minutes.

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

Are the 4 problems shown in the contest in a seperate category part of snackdown?(it should consist of div2,div3 only problems)

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

    Those 4 problems are not a part of the contest. The "Non-scorable" heading was missing. They were totally removed after the first couple of minutes. Apologies for the confusion.

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

Is there a soln to DECSUBK that works in $$$O(n ^ 3)$$$ or similar or are they just troll constraints? I got AC with an $$$O(n \cdot logn)$$$ solution but I can't think of any simpler idea with worse complexity.

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

    Brute forcing the solution by checking for each index the minimum number possible on that position will work in O(n^3 log(n))

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

    My $$$O(n^3log(n))$$$ solution was to greedily assign the elements from $$$1$$$ to $$$n$$$, checking if it's possible by seeing if the minimum possible longest non-decreasing subsequence length is $$$<= k$$$. If [min possible] <= k <= [max possible], k must be achievable.

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

    My soln was $$$O(n^3*logn)$$$ and it aced in 0.34s. I found LIS of $$$O(n^2)$$$ sequences in $$$O(n*logn)$$$.

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

    I did it in O(n^3).For every element in the sorted array I made an LIS array and checked at which position can the current element be inserted so as to not exceed LIS by k.

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

    What's your solution?

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

      Lets make some observations:

      • If an element $$$i$$$ appears $$$x_i$$$ times, the length of the longest non-decreasing subsequence is at least $$$x_i$$$. So the answer doesn't exist if there exists some $$$x_i \gt k$$$.

      • The length of the longest non-decreasing subsequence of an array made up of $$$k$$$ strictly decreasing segments is at most $$$k$$$.

      • If for each element $$$i$$$, we place its $$$x_i$$$ occurrences in $$$x_i$$$ contiguous segments $$$[l_i, l_i + x_i - 1]$$$, such that $$$l_i \lt l_j$$$ if and only if $$$i \lt j$$$ and all $$$k$$$ segments are non-empty, the length of the longest non-decreasing sequence is exactly $$$k$$$.

      • To produce the lexicographically smallest non-decreasing sequence in this manner, it is optimal to make as many of these segments (from left to right) as possible have exactly one number, and for this number to be as small as possible.

      This yields a simple greedy where if we have placed the occurrences of the first $$$i - 1$$$ elements in the first $$$j$$$ segments till now, it is optimal to place the element $$$i$$$ in the range $$$[j, j + x_i - 1]$$$ or $$$[k - x_i + 1, k]$$$ if $$$j + x_i - 1 \gt k$$$.

      This can be implemented using a map or array of the number of times an element appears in O(n logn) or O(n) respectively.

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

    .

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

Why is pre-elim round rated? I've qualified, but at what cost T_T

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

CodeChef_admin Will the top 500 of this round get T-shirts?

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

    Same question.But I think in this round 580 people will be qualified and 80 of them will not get a t-shirt as the rule states top 500 contestants of eliminations will get t-shirts.

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

    NO, this was pre Elimination round. This is mentioned on the prizes page.

    Top 500 participants from the Elimination round will get a cool SnackDown t-shirt.
    • »
      »
      »
      2 года назад, # ^ |
        Проголосовать: нравится +18 Проголосовать: не нравится

      Top 500+80 will qualify for the elimination. So the top 500 out of those 580 will get T-shirt!! Does not seem right for me

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

I hate GUESSROW.

IMHO hiding this information is too unfair.

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

    I ran my solution locally with different seeds, it used in average 590-620 queries per test, then I chose the best seed for my interaction (which was probably as good to any other interactor as any other seed) and submitted, assuming that there are not a lot of tests and I can force it to pass in an expectedly finite number of attempts; it only took one.

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

      Yes, so your situation is OK. For me, who was not very clever, it was something like 600-650, and it was impossible to tell appropriately from the information available from the statement when to stop improving the solution.

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

    Hating the problem seems a bit too much (though your opinion was shared by the coordinator...) but what you say about the number of tests is correct. It would have been better to say the number of tests explicitly.

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

In SLIPPERS only after third wrong attempt I've realized that there is a second sample test, don't do that.

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

Why $$$M=1$$$ in MEGAMU2...

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

    Was it a special case for your code? I am asking because it was not special for the official solution, so I don't see what's wrong with it.

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

      I can say for myself, that I noticed that the sequences where $$$\mu$$$ is nonzero can be described as follows:

      1. Delete all zeroes.
      2. Let the part before first element greater than $$$2$$$ be $$$p$$$, the remaining part be $$$s$$$.
      3. Delete all ones from $$$s$$$.
      • either $$$p$$$ is an even number of twos, or $$$p$$$ has an odd number of twos before the first one;
      • $$$s$$$ consists of blocks of type $$$(x+1)^+(x)^+$$$ and $$$(xx)^+$$$;
      • $$$s$$$ does not have falls by at least two.

      Then I calculated some dp, and I had to handle $$$M = 1$$$ manually to calculate the number of valid $$$p$$$-s.

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

        Thank you, now I see the point (I knew about this solution, but I completely forgot about it when writing the above comment).

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

        That is exactly what I did. Thanks for the explanation.

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

Hello everyone. After the round was over I have started to examine some problem "Slippers" solutions and they were all suspicious identical. Judge yourself:

Submission #1

Submission #2

Submission #3

Submission #4

unfortunately, almost all the submissions were like this.

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

    I have noticed suspiciously big jump in number of AC for SLIPPERS approximately half of hour before end of contest. Then after contest was finished I decided to check couple SLIPPERS solutions which were made in the last half of hour and ACed from the first try and a lot of them (1,2,3,4) are identical. So indeed there was some leaked solution, unfortunately. Fingers crossed for CodeChef's MOSS system.

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

      Another interesting finding is that masoom_41 placed 305 with a single problem solved. Is it some weird platform glitch?

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

        Most likely he ACed one of 4 problems before they were removed. /cc CodeChef_admin

        Upd: His cc profiles says 2 acs SNCKPE21: ODDSEVENS, PRDTPAIN but ODDSEVENS was non scorable in snackdown.

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

          Thanks for reporting this. Yes, it was a glitch with just this 1 user due to the non-scorable problem being removed during the contest. It has been fixed.

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

how to solve slippers.

  1. Read GP of IMO J
  2. ???
  3. win
»
2 года назад, # |
Rev. 4   Проголосовать: нравится +8 Проголосовать: не нравится

Thanks for the contest, very nice problemset.

For GOODRANKING, I did some randomization and it passed: https://www.codechef.com/viewsolution/54143464. Not sure why though, my check function works in O(n^2) in worst case, so overall worst case time complexity should be O(n^3).

UPD : Code works even without randomization. No idea how xD

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

Very nice contest, specifically the part authored by dario2994. Much better than I expected from CodeChef. Hopefully the elimination/finals will be as nice.

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

BTW how the rating update works? Div.1+pre-elimination merged ranklist or separate ranklist?

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

Thanks to nishuz

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

    It's probably because the elements are not necessarily distinct.

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

      Can you elaborate ?? or provide a case where non-unique elements can cause problem
      In one of my test cases I tried with two same elements but answer with AC code and ternary search code is same

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

          THANK YOU!! very much for providing that test case
          Learnt a bit more about about ternary search today
          I modified my code so that there are only distinct values when I ternary search
          If anyone interested in ternary search solution Code

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

during the 25 last minutes of the contest, there are about 400+ accepted solution for "Guests like slippers".

most of them are the first submission, i.e. no penalty.

that's great ! hope the next round will also be fantastic like this ! everyone knows suddenly how to programming...

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

Really enjoyed solving D, the observation was cute and felt rewarding (though I'm not sure if I had the intended solution).

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

When will the ratings get updated?

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

    I think it is completely unreasonable to expect fast rating updates AND thorough plagiarism checking.

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

CodeChef_admin I have seen that my rank in SnackDown Pre-Elimination jumped up by ~40 positions and that the rating were updated. Does it mean that plagiarism checks were done already? And if so — why all solutions from my and 3 out of 4 solutions from DoIGetConribution's comment weren't removed and authors weren't banned from appropriate contest and from platform at all?

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

Its more than a week ...... How much time more codechef take to ban cheaters...

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

CodeChef_admin my rank in snackdown pre elimination was 905 and rating was updated according to it but now my rank is 715, still the rating is the same. Is it expected or it will be fixed?