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

Автор chokudai, история, 13 месяцев назад, По-английски

We will hold ユニークビジョンプログラミングコンテスト2023 春 (AtCoder Beginner Contest 300).

The point values will be 100-200-300-400-500-500-600-600.

For more information on ABC300 support, please click here. https://atcoder.jp/posts/1028

A pdf of the problem statement will be distributed here. https://img.atcoder.jp/abc300/tasks.pdf

We are looking forward to your participation!

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

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

I am looking forward to AtCoder server stability.

UPD: yeah finally an ABC without site-down. Sincerely thanks to the AtCoder team!

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

Please no more ddos!

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

it's a milestone , 300th contest , keep going my favourite OJ

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

Hope there will be no more DDoS on Atcoder, Codeforces and all the websites.

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

Problem statement of C gave me a headache.

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

    Why so many IELTS reading tests on competitive programming platforms. I think we should keep them simple.

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

Hooray! The round ends in successful! Happy centennial!

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

In Problem E, 1 and 6 (**inclusive**) made my contest bad :(
Never noticed about it before :(

  • 1 and 6 (inclusive) ---> (1, 6]
  • 1 and 6 (both inclusive) ---> [1, 6].

I assumed the second one and could not solve E and moved to F :(

PS: Solved A-D and F, feels good after solving F just before contest ended.

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

Problem G is the same as subgroup number 6 of problem I of the long tour of the Moscow Open Olympiad. Constraints there are $$$n \leq 10^{18}$$$ and $$$p \leq 500$$$, which probably requires a lot more local optimizations.

»
13 месяцев назад, # |
Rev. 3   Проголосовать: нравится +24 Проголосовать: не нравится

Thank the contest!
I reached 4kyu in this contest!!!
Hello, Atcoder Grand Contest!

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

Congratulations for the 300th ABC! And without loser ddosers around!

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

In Problem C, is the 3rd condition At least one of C[a+n+1][b+n+1],C[a+n+1][b−n−1],C[a−n−1][b+n+1], and C[a−n−1][b−n−1] is .. redundant? I can't make sense of it.

For instance in sample 1, for the cross of size 2 centered at cell (3,7), n is 2, the 4 cells, at least one of which should be '.' are (in 1 based indexing) : (6,10), (6,4), (0,10) and (0,4) all of which lie outside the grid. How is this condition satisfied then?

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

    The 3rd condition is there to avoid overcounting. Imagine you have a cross of dimension 2. Without the 3rd condition, one would count there are 2 crosses. One with dimension 1. The other with dimension 2. After adding this 3rd condition, we know only the cross with dimension 2 should be counted.

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

      But how is it doing that? Besides, the cells mentioned in 3rd condition can lie outside the grid like mentioned in later part of my previous comment.