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

Автор Dominater069, 44 часа назад, По-английски

We invite you to participate in CodeChef’s Starters 160, this Wednesday, 13th November, rated upto 5 stars (i.e. for users with rating < 2200)

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

Joining us on the problem setting panel are:

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 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.

The number of problems in each division is as follows :

  • Division 1 : 4 problems + 1 subtask
  • Division 2 : 5 problems + 1 subtask
  • Division 3 : 6 problems + 1 subtask
  • Division 4 : 7 problems + 1 subtask

Good Luck!

UPD 1 : The contest has been postponed for 30minutes and will now start at 8:30 PM IST due to a technical error. We apologize for any conveniences.

UPD 2 : The top $$$5$$$ standings are here. Congratulations to the winners!

  1. Egor
  2. wwwwodddd
  3. potato167
  4. liympanda
  5. flytime
  • Проголосовать: нравится
  • +44
  • Проголосовать: не нравится

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

Once again MATHCHEF / MATHFORCES

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

the contest is delayed by 30minutes

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

You guys always reject every single problem idea I propose without any feedback.

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

let me guess another round that is just a bunch of puzzles ?

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

how exactly is second character in S an 'a'? lol.

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

Codechef never disappoints in disappointing

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

GuesStarters

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

I gave div 2, the question A felt a bit harder than B and even C!

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

I really liked the problems, more power to you guys!

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

Div 3 B was a good question. I had this approach pruning the unnecessary 'b's out after 'a' to match it with regex b*(a(b*))* and then equating them, but took long time in implementing it.

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

    It's actually easier than that. Just make sure that the total number of a's and the number of initial b's are equal.