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

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

Hello, Codeforces!

We are going to host a new contest at csacademy.com. Round #74 will take place on Wednesday, March/28/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.

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

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

The round won't be held today. We're expecting you next week :).

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

I think you had to announce it earlier :(

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

Just a reminder. The contest will take place tomorrow.

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

wefgef: Just a reminder, the round starts in 1 hour.

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

Why did it start one hour earlier than declared in announcement?

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

    I received an e-mail claiming the round was to be held at 15:05 UTC. To my surprise, one contest hour had already passed when I was getting ready to participate :(

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

      We're sorry about that. We had some the summer hour change in Romania and usually it messes things up.

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

Are rounds the same time/day each week? I am interested but unfortunately this is not a great time for me.

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

    Yes. The time may change by a few hours based on how countries adapt to the summer time, but it's always on wednesday.

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

In question Two Squares, why does the simple greedy approach not work?

During the contest, I came up with a solution in which I was first choosing the subsquare of size K containing the maximum number of 1's. Afterward, converting each cell to 0 inside the subsquare. Again, I repeated the same process on the newly generated matrix. I got WA for this approach. Can anybody explain me, what is the flaw with this concept?

Submission Link