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

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

Hello, Codeforces!

I have curated a Solo Practice Contest in the gym, Coding Challenge Alpha VI — by Algorave. The level of questions is medium. This is for anyone who loves giving contests and solving problems. This contest will be of most interest upto Expert rated coders, but I would also like to invite Div. 1 coders to participate as well. For anyone who wants to practice or just wants to go through the problems can register for our contest here. Hope you will enjoy solving the problems!

I would like to thank:

Contest Details:

We hope that this contest, regardless of your background, rating and result, will increase your exposure to competitive programming and make you better than you were yesterday. Have fun!

Note: You can also register for the contest while it is going on. You may want to check out our group for past contests.

UPD: The registration has started!

UPD2: The contest begins in 1 hour, all the best to all participants!

UPD3: Contest is made private, you can access the contest with this link.

UPD4: Congratulations to the winning contestants!

  1. liympanda
  2. coderdhanraj
  3. MeetBrahmbhatt
  4. Airths
  5. Ryuga_

Congratulations to first solves as well!

UPD5: Editorial for the contest is out, check it out here

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

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

As a problem setter, I highly recommend participating in this contest...

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

As a problem tester, I really liked the problems and highly recommend everyone to participate in the contest !

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

i will give this contest .

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

Auto comment: topic has been updated by 0x4F5F6F (previous revision, new revision, compare).

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

Auto comment: topic has been updated by 0x4F5F6F (previous revision, new revision, compare).

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

Auto comment: topic has been updated by 0x4F5F6F (previous revision, new revision, compare).

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

Auto comment: topic has been updated by 0x4F5F6F (previous revision, new revision, compare).

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

Can someone please give an editorial on C?

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

    First, divide all elements by $$$2$$$ so instead of $$$L_1, L_2, \dots, L_x$$$, we'll only consider $$$L_0, L_1, \dots, L_{x-1}$$$, which imo is more natural.

    We will only consider the lowest $$$x$$$ bits of each number, and thus we can just compress a $$$10^6$$$ element array into an array of frequencies for $$$2^x$$$ elements.

    Now, we can brute force all sets of keys to check if a set can unlock all. It's an $$$\mathcal{O}(2^{2x})$$$ approach, which is totally viable at $$$x \le 10$$$.

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

Can someone please tell how to solve D?

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

Auto comment: topic has been updated by 0x4F5F6F (previous revision, new revision, compare).