CodeChef_admin's blog

By CodeChef_admin, history, 12 months ago, In English

We invite you to participate in CodeChef’s Starters 91, this Wednesday, 24th May, rated till 6-stars Coders (ie. for users with rating < 2500).

Time: 8:00 PM — 10:00 PM IST

Note that the duration is 2 hours. Read about the recent CodeChef changes here.

Joining us on the problem setting panel are:

Note: Some problems have subtasks.

Written editorials will be available for all on discuss.codechef.com. Pro users can find the editorials directly on the problem pages after the contest.

The video editorials of the problems will be available for all users for 1 day as soon as the contest ends, after which they will be available only to Pro users.

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!

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

»
12 months ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

Hoping this time, correct input test cases are there :)

All the best, everyone!

»
12 months ago, # |
  Vote: I like it -23 Vote: I do not like it

unrated account not allowed to write blog how u able to write blog some error in codeforces system i come here to spam again on codeforces !

»
12 months ago, # |
  Vote: I like it +18 Vote: I do not like it

Note: Some problems have subtasks.

»
12 months ago, # |
  Vote: I like it +14 Vote: I do not like it
Personal Opinion
»
12 months ago, # |
  Vote: I like it +6 Vote: I do not like it

Why the answer for 2nd problem (Odd GCD Permutation) for n = 1 is No. Isn't it should be yes coz for odd indices, gcd is 1 and for even indices, it will be 0. Hence gcd for odd indices is greater than the even one. Then why no?

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

    Why is the gcd of empty array 0?
    Vacuous_truth
    Pick any positive integer (say g), for empty array (say A). this statement holds true -
    g divides all the elements present in A.

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

    Just now, I checked the announcement, they changed the constraints to N >= 2. I wasted too much time thinking about the edge case in it. It shouldn't be done ;/

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

In Limited Shopping, why is this submission fast enough?
I coded $$$O(n*n*k)$$$ brute force at the last minute to fetch 30 points and was surprised to see 100 points on it.

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

    I did O(n*k*k*k) to get 11 points but got 30 points.

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

    It seems like just low constant factor.

    I did a quick operation count, your code does about $$$6\cdot 10^8$$$ operations in the worst case, but they're all pretty simple ones so it happens to run fast.

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

Loved the question -XOR & sum

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

    How did you solve it?

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

      Start with the simple observation that $$$a + b = a \oplus b \iff a \& b = 0$$$, ie $$$a$$$ and $$$b$$$ share no 'on' bits.

      The observations from each subtask:

      Subtask 2
      Subtask 3

      Putting these together, we arrive at:

      The final solution

      Here's my AC submission. Sadly couldn't come up with this during contest :P

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

    yeah... the subtasks were really well made to develop intuition about the main problem