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

Автор prabowo, история, 5 лет назад, По-английски

Dear Codeforces community,

We're excited to invite you to TOKI Regular Open Contest (TROC) #7!

Key details:

  • Rated
  • Contest links: Div 1 and Div 2
  • Time: 1 September 2019, 13:05 UTC+7
  • Style: full feedback, 8-minute penalty per wrong submission
  • Scoring: You get the score assigned to the problem when you fully solve it
  • Writers: AMnu, YogayoG
  • Duration: 2 hours
  • Problems: 5 for every division
  • Allowed languages: C, C++11, Pascal, Java, Python 3

This is the first TROC round that uses two divisions system:

  • Users with rating less than 2000 or not yet rated should participate in Div 2
  • Users with rating at least 2000 should participate in Div 1

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

UPD1: The contest is rescheduled to 1 September 2019, 13:05 UTC+7

UPD2: Scoring distribution:

  • Div 2: 100 — 200 — 300 — 550 — 700
  • Div 1: 200 — 400 — 500 — 850 — 900

UPD3: Contest is over! Our Top 5:

Div 1:

  1. wiwitrifai
  2. rais.fathin38
  3. faustaadp
  4. Pyqe
  5. rfpermen

Div 2:

  1. rapel
  2. Lucina
  3. ollpu
  4. jessenanwar
  5. vioalbert

Editorial will be available here (currently English is not fully available yet).

You can upsolve the problems here.

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

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

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

Clashes with atcoder beginner contest

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

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

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

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

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

Are you sure that tests for problem E are correct? I tried to assert whether the cities are indeed connected, and this gives RTE verdict (and without this assertion it gives WA).

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

    We double checked the tests again, and the cities are already connected.

    Looks like your RTE is caused by another reason. Maybe because the array s that you used should have the size of N instead of 20

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

      Oops, my bad, sorry about that. Now I really wonder why my solution is incorrect:) Is there something special about testcase 43? Also, is it possible to submit after the contest?

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

        It is fine :) You can upsolve the problems here.

        Test 43 is when
»
5 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

It would be great if next contests have later starting time (at least 2-3h), this time is pretty bad for Europe.

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

    Yes, we will try to have a later starting time for the next contests, as it is better for most of the current contestants as well

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

when editorial will publish.... and how to solve problem E in div2..

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

    Editorial for English is being written. For problem Div 2E, the optimal answer is to "cut" the edge of the "median" of the diameter (if diameter is even, you have two edges to check).