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

Автор LastDance_NotLastOfMe, 3 года назад, По-английски

Hello, Codeforces!

I am happy to invite you to participate in Al-Baath Collegiate Programming Contest 2023 that was held at the Al-Baath University 22.06.2023 11:00 (Московское время).

The problems were authored and prepared by Mahmoud_Haddad, Blade-Master, nooooob_KiFaH_HeLaL, Geo_Ghaffar, Basharo, molhaam1, somar_mh, Tinky-Winky, and me.

I would like to give our sincere thanks to:

And a special thanks to EleCursity, who helped us coordinate the contest onsite and made sure that everything ran smoothly.

We would love to hear your feedback on the problems in the comments section. We hope you have a blast participating in this contest and wish you the best of luck!

Contest Feedback

Happy coding!

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

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

As a tester, Geo_Ghaffar orz

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

orz

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

It is a pleasure to work with you. Looking for positive feedbacks ^_^

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

As a tester, the problems were really interesting and I would definitely recommend them.

Oh and also, Geo_Ghaffar orz.

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

How to solve K???

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

I am glad that I have been part of the testing process.

And as a tester, I had a great time joining this gym ^_^

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

how to solve I ?

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

    Take a look at the other problems, some of them are easier. We will soon publish brief solutions or editorials.

    Hint1
    Hint2
    Hint3
    Hint4
    Solution
»
3 года назад, скрыть # |
← Rev. 2  
Проголосовать: нравится 0 Проголосовать: не нравится

Any hints for problem D ?

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

    "Brute force all possible subarrays, considering the largest number as 1023. Therefore, the worst-case scenario would involve iterating through 1024*1024*10 (number of bits) https://pastebin.com/Q9DPh3RJ

  • »
    »
    3 года назад, скрыть # ^ |
     
    Проголосовать: нравится +9 Проголосовать: не нравится
    Hint1
    Hint2
    Hint3
    Solution
    C++ Code
»
3 года назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Any hints for problem I plz ?

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

how to solve F? i can't detect the error in my code nor the logic

  • »
    »
    3 года назад, скрыть # ^ |
    ← Rev. 2  
    Проголосовать: нравится -11 Проголосовать: не нравится
    Hint 1
    Hint 2
    Solution
    Code C++
»
3 года назад, скрыть # |
 
Проголосовать: нравится -8 Проголосовать: не нравится

Any Hints to solve problem J?

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

Thanks for the amazing problem any idea how to solve problem E

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

Any hints for $$$J $$$ $$$?$$$

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

When & where editorial will be published?

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

I think there is a mistake in testcase 4 (and probably some other testcases after that too!) for problem H, the polygon given on that testcase is probably on counterclockwise order (which in problem description the polygon given should be on clockwise order), thanks to this I wasted 2 whole hours to find a counter testcase to my solution which is can only works on clockwise order. But there is none, since when I reverse the order of polygon when it was given on counterclockwise order then I got AC.

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

I want to know how to solve H. I use sweep line and segement tree to maintain the number of intervals that cover the points, but i can't solve those points at the endpoint of interval. I'm hopeful that someone can provide hint of this problem. Your response would be highly appreciated. Thank you.