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

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

Hello, Codeforces!

We are going to host a new contest at csacademy.com. Round #73 will take place on Wednesday, March/14/2018 15:05 (UTC). This round will be a Div. 2, affecting users with a rating below 1800.

Facebook event

Recently, Facebook has reintroduced the possibility of recurring events. If you choose "Interested" here, you will be notified before each round we organise from now on.

Contest format:

  • You will have to solve 5 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.

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

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

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

Can you consider some timing variety while setting your contests? It's been like Wednesday every time for a long time with probably like one exception.

I understand it's not possible for relatively new platforms to change their times, but perhaps alternate between two timings? (For example Wed-Wed-Mon-Wed). I really like your platform & problems but me, and probably many others miss your rounds because of that. I know no one time fits all, but if you somehow alternate, it's better.

Hope you consider it, Thanks!

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

    There is the 'Contest Preferences Survey' where you can set your preferred time (top right box on homepage). I wonder when they will publish/analyse results from it.

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

How people could solve E problem in 3 minutes?

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

    classic suffix array problem

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

      Even if it is classis problem. I don't think that it is possible to code solution in such small amount of time.

      But I have read the chat after the contest and somebody has written that exactly the same problem was on some USACO contest not so long ago.

      So I think people just copy solution their or authors from there. I know that the rules didn't forbid it but it is kind of upset to see it is in the round.

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

It was probably the first CSA round (that I participated) that was awful. If you don't have good problems for div.1 it doesn't mean that it's OK to host div.2 with generic problems like 'check if two rooted trees are isomorphic' and 'write suffix array'.

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

How to solve B using median ?
The only logic i can get is Ternary search.

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

    can u describe your idea of how to approach using Ternery search, Model solution proposed by author is too short if he also posted the proof of why both problems are equivalent that would be good.

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

Can anyone explain how to solve D?