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

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

Hello Codeforces! :3

Yesterday, our small community in Mansoura held its traditional contest Game of Coders for the third year. And we are very glad to bring you the contest on Codeforces c:

The mirror contest will be held on Tuesday $$$16^{\tiny{\mbox{th}}} $$$ July 2024 at 19:05 UTC+3.

You will be given 5 hours to solve 13 problems that I have prepared (I hope they are all original). The contest is ICPC style with 20 minutes penalty for each incorrect submission, and problems are not sorted by difficulty, so read all the problems carefully. :3

This is my first time creating a full problemset, and it was a very fun (and exhausting) experience, and I would like to thank the people who I couldn't have done it without:

Hope you enjoy the contest and have fun solving problems. <3

UPD: The editorial (not really, just the codes) is finally out! I'll prepare hints and solutions and edit the blog later, hopefully. :3

Анонс Game of Coders 3.0
  • Проголосовать: нравится
  • +159
  • Проголосовать: не нравится

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

I love this man :)

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

Interested!

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

Great Work

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

The best ❤️

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

Great contest from great problem setter , really enjoyed it❤️

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

The Greatest Alive I admire :*

»
2 месяца назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится
I am really excited to participate in this Contest..

but I have a simple comment:

if you can make it at time 20:35 (Cairo TIME) because A lot of People Will be fasting Tomorrow(يوم عاشوراء) ...:)

I Know that we can do it virtually but I ask if you can do...

..sorry for my bad english..
  • »
    »
    2 месяца назад, # ^ |
      Проголосовать: нравится +3 Проголосовать: не нравится

    Most people told me it would be too late, and they wouldn't be able to participate for the full duration :(

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

The contest invite isnt there right ? Or will it start to be visible 6 hours before the contest cause now nothing opens and it just says Contest Hasn't Started

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

    I honestly don't know how to link to it :3

    I think it's the first one in the GYM page

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

We still won't know who The Secret Partner is ?

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

wedyyyyyy <3

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

i cannot participate in this contest fully so ill try to solve more problems after but will be there an editorial?

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

Thanks for this nice contest ^_^

I had fun while solving the problems

Good luck in the next <3

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

Can someone please shed some light on solving F. Fibonacci Strings?

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

    we know that $$$f_x = f_{x-1} + f_{x-2}$$$ and $$$f_1 = s.length(), f_2 = t.length()$$$.

    Let's solve it recursively, let $$$func(x,k)$$$ be the $$$k_{th}$$$ character at string $$$x$$$. if $$$k$$$ if greater than $$$f_{x-1}$$$ we can subtract it from $$$k$$$. otherwise, we know that the $$$k_{th}$$$ character in $$$f_{x-1}$$$.

    Code

    Don't forget to check if $$$x=1, x=2$$$ first.

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

      Thanks a lot for such clear and concise explanation. I tried to implement as u have told me to, but getting WA at testcase 5. Could u please see my code where am I doing it wrong?

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

Will there be an editorial?? If not could you atleast allow us to veiw other's submission ;-;

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

    I will try to make an editorial soon. :3

    As for the submissions, I don't think I can edit this setting as it's a public gym :c

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

      oo alr, thnx a lot either way , was a really nice contest , loved the problems , will be looking forward to the editorial :)

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

Can someone explain The FFT Problem?

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

Editorial?

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

While the editorial is being made , can you please just release the codes for them and then after a while when the editorial is completed then edit that blog to include the editorial as well

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

I'm trying to solve problem H.

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

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