Блог пользователя steven.novaryo

Автор steven.novaryo, история, 4 года назад, По-английски

Dear Codeforces community,

We are excited to invite you to TOKI Regular Open Contest (TROC) #14!

Key details:


Scoring distribution:
  • Div 2: 100 — 200 — 300 — 300 — 400 — 550
  • Div 1: 100 — 100 — 200 — 350 — 450 — 600

I would like to thank prabowo as coordinator, hocky for helping with problem preparation, fushar as organizer, wiwitrifai and yz_ as testers, and Yoshiyuki as proofreader.

Please register to the contest, and we hope you will enjoy TROC #14!

UPD: Contest is over! Our top 5:

Div 1:

  1. Benq
  2. maroonrk
  3. BohdanPastuschak
  4. rqi
  5. Pyqe
Rank 4 and 5 in div 1 have same score and penalty.

Div 2:

  1. tatyam
  2. dario2994
  3. tute7627
  4. Bohun
  5. m_99

Editorial is available here (English on page 8).

You can upsolve the problems here.

Thank you for participating and see you on the next contest!

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

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

novaryo orz

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

But is it rated?

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

Why I can not register?(When I fill the information completely,click the button and no response.While,I try to click the login button and it is valid.)

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

As a tester, I am glad to see this wonderful masterpiece before most people could! Good luck to everyone!

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

Friendly bump!

The contest will start in 2 hours, good luck and have fun for everyone. ^_^

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

How to solve Div.2 F? Anyone, to help with the English version of editorial?

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

what's wrong in my submission of D. I think my logic is correct but it's giving WA please help

https://tlx.toki.id/contests/troc-14-div-2/submissions/285513

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

    Submissions are not open to everyone in TLX. Can you send a pastebin link instead?

    Edit: wait, I'm a tester. I should be able to open it lol

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

      here is my submission

      https://ideone.com/w4ubj0

      please check it once, I couldn't able to find mistake for 1 hour.

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

        Your code fails on this testcase:

        3
        1000000000000000000 999999999999999999 999999999999999998
        

        The output should be 1000000000000262143 whilst your code outputs 1000000000000000001.

        I believe this is due to the usage of (1 << i) in your code instead of (1LL << i)

        Also, I would recommend avoiding log2 and using a constant like 60 or something instead.

        Cheers!

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

      bruh

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

Thanks for the contest:) It would be probably better to increase constrains on $$$F$$$, as $$$O(NQ)$$$ solution passes quite easily.

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

    Mind sharing your code? I did HLD ($$$O(\log^2N)$$$ per update and $$$O(\log N)$$$ per query).

    Also seems that rqi's code for F passes comfortably when he resubmitted it after the contest ...

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

    We intend to let $$$O((N+Q) \sqrt Q)$$$ solution to pass, hence the current constraint and time limit.

    Our $$$O(NQ)$$$ solution took ~10s to pass, so we were quite surprised by how fast your $$$O(NQ)$$$ solution runs :)

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

Can someone plz help me in div2D problem. I have used the same logic as the editorial but getting a WA. Link

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

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

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

Very nice visual explanations :)

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

Happy contest