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

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

Hi, I am Konijntje, staff of the Korean programming site -- solved.ac.

We will hold solved.ac Grand Arena Round 1.

  • Time: https://www.timeanddate.com/worldclock/fixedtime.html?iso=20230806T14&p1=235&ah=3, 180 minutes
  • Problems: 9, in ICPC format
  • Difficulty: Problems A and B are the first and second easiest problems expected by the jury. The order will be random except for problems A and B. All problems' difficulty will be between Bronze and Diamond by the solved.ac scale.
  • Penalty: 20 minutes; The scoreboard will freeze 30 minutes before the contest ends. Compilation errors do not count toward penalties.
  • Scoreboard: ICPC style. The contestant with more solves is ranked in a higher place. If two contestants have the same number of solves, the contestant with the small amount of the sum of penalties over all accepted problems is ranked in a higher place.
  • Time and memory: There is a handicap for some languages.
  • Rated range: Unrated — SS+.

This contest is a solved.ac Arena contest. The following terms apply to an Arena contest.

  • Your performance in the Arena will change your arena rating if you register on the solved.ac Arena page.
  • Registrations are open until 5 minutes before the contest starts. You can cancel registration anytime before the contest begins.
  • You can participate in the Arena without registering. In this case, your rating will not change.
  • Please note that your rating will change even if you don't make a submission in the arena if you're registered.

Among the participants registered in the Arena, the top 3 on the scoreboard and 3 randomly selected participants will receive a metal badge commemorating their participation in the Arena as a small souvenir.

Please refer to the following guide for registering in the Arena contest:

We look forward to your participation. Thank you!

UPD: Editorial: https://solved.ac/en/arena/1/editorial

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

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

Do you have a picture of the badge?)

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

So this is like AtCoder from Korea?

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

    The solved.ac site is mainly for making votes/contributions about problem difficulty levels for Baekjoon Online Judge(BOJ), a Korean online judge.

    Since a lot of community contests are held on the BOJ platform, we thought it could be fun if we rate these contests. The Arena contests are our attempt to do them. So it's like AtCoder, but the contests' competition format will likely vary from one to another.

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

      Why not embed rating into BOJ then?

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

        BOJ and solved.ac are run by different parties and operate independently. It'll be great if we can merge the sites into one in the future, but it is not the case for now.

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

Interesting format and great time, sounds like a fun contest.

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

Ig It is not available in English format :)

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

I liked the contest overall! However, just FYI, Move Stones was already used in TCO Algorithm Final 2017 as 450.

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

    Happy to hear that you liked the contest. Thank you!

    Thanks for informing us about the TCO version; The TCO one seems harder than our version.

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

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

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

Fun contest, the format is fresh! Liked the problems. I am not against having multiple easier problems and a few harder ones, because then you can spend longer on the harder ones. Sadly couldn't implement D in time.

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

    Thank you for your participation! Problems will be uploaded in BOJ within a day, so you can upsolve it if you want.

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

Looks like the security setup is a bit too strict for the D programming language on the judge.

For problem I, see how an accepted submission 64679461 differs from a non-accepted one 64679467 only in one line: GC.disable (); at program start is commented out.

GC is garbage collector. When I turn it off, the program runs successfully. When I don't touch it (it's on by default), the program fails somehow (Wrong Answer or Runtime Error depending on the compiler and apparently some other stuff).

By trial and error, I've concluded that a solution can't start more threads. And GC does need another thread when it runs a collection cycle. Perhaps it's somehow circumvented for Java already, because, as I remember, there are a few threads there by default. Maybe the same can be done for D?

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

    Thank you for the comment about the D language! I'll forward your comment to Baekjoon.