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

Автор csacademy, 7 лет назад, По-английски

Hello, Codeforces!

We're going to host a new contest at csacademy.com. Round #43 will take place on Sunday, 27/August/2017 12:00 (UTC). This contest will be a Div1 + Div2, with 7 tasks of varying difficulty that need to be solved in 2 hours.

We are glad to have lucyanna2018 as a problem author.

Prizes

We're going to award the same prizes as the previous Div. 1 + Div. 2 rounds:

  1. First place: 100$
  2. Second place: 50$
  3. One random prize: 50$.

Contest format:

  • You will have to solve 7 tasks in 2 hours.
  • There will be full feedback throughout the entire contest.
  • Tasks will not have partial scoring, so you need to pass all test cases for a solution to count (ACM-ICPC-style).
  • Tasks will have dynamic scores. According to the number of users that solve a problem the score will vary between 100 and 1000.
  • Besides the score, each user will also get a penalty that is going to be used as a tie breaker.

About the penalty system:

  • Computed using the following formula: the minute of the last accepted solution + the penalty for each solved task. The penalty for a solved task is equal to log2 (no_of_submissions) * 5.
  • Solutions that don't compile or don't pass the example test cases are ignored.
  • Once you solve a task you can still resubmit. All the following solutions will be ignored for both the score and the penalty.

If you find any bugs please email us at [email protected]

Don't forget to like us on Facebook, VK and follow us on Twitter.

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

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

Wow. This is awesome. I can't wait to complete.

Is it CF rating? I WANT TO KNOW!

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

Just a remainder, contest will start in about 11 hours.

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

Reminder, contest has started.

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

Will tasks be in sorted order by difficulty?

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

ConStructAcademy

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

Problem DEF are all constructive problems. Though interesting, I think it's way too much and I'm too stupid to work out all these problems :/

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

How to solve E. How to prove, for every K answer is possible, Editorial is not clear to me https://csacademy.com/contest/round-43/task/coprime/statement/

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

How to solve C? No editorial has been provided for it yet.

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

    Sort the stations in increasing order. Now for each interval bounded by two stations located at positions [a, b],  the expected distance the train will have to be pushed multiplied by b - a is equal to if b - a ≥ L or 0 otherwise.

    (Then we divide by D at the end to finish)

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

editorial for E isn't clear to me? Can anyone explain their solution