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

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

Автор antontrygubO_o, 23 месяца назад, По-английски

We invite you to participate in CodeChef’s May Lunchtime, this Sunday, 15th May, rated for all.

Time: 8:00 PM — 11:00 PM IST

Joining me on the problem setting panel are:

Also, announcing Scholarship for CodeChef Certification in Data Structure & Algorithms — More than 100 Indian participants in Divisions 1, 2, and 3 will win scholarships for the CodeChef Certification exam (discounted prices). Scholarship criteria can be found on the respective contest pages.

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!

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

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

Reminder: Contest starts in 30 minutes.

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

Are the amazon gift vouchers still there?

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

What is the mathematical jugglery behind PWMUL?

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

anyone explain pls how to solve "Equal After And" task ?

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

    Here it is Editorial.

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

      s=A1&A2&A3&A4......&An

      i dont understand why we need to make all element equal to s? any proof?

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

        Let's say if array is partitioned into $$$k$$$ parts,where each part contribute to each number in the final array, and bitwise AND of each part is $$$a$$$ (values in the final array). Bitwise AND of the whole (original) array is basically the bitwise and of all $$$k$$$ final numbers, which is $$$a$$$($$$a$$$ & $$$a$$$ $$$=$$$ $$$a$$$). So that is why we have to make all elements equal to $$$s$$$.

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

Is there any particular reason that some submissions run faster in C++14 compared to C++17 on the judge ?