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

Автор hmehta, история, 4 года назад, По-английски

Hey All!

Topcoder SRM 775 is scheduled to start at 11:00 UTC -5, Jan 16, 2020. Registration is now open in the Web Arena or Applet and will close 5 minutes before the match begins.

Thanks misof for writing the problems and coordinating the round.

This is the second SRM of Stage 2 of TCO20 Algorithm Tournament and TCO20 Regional Events Qualification

Stage 2 TCO20 Points Leaderboard | Topcoder Java Applet | Upcoming SRMs and MMs

Some Important Links

Match Results (To access match results, rating changes, challenges, failure test cases)
Problem Archive (Top access previous problems with their categories and success rates)
Problem Writing (To access everything related to problem writing at Topcoder)
Algorithm Rankings (To access Algorithm Rankings)
Editorials (To access recent Editorials)

Good luck to everyone!

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

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

Cannot login into the Web Arena. Receiving "Login time out. Please try again at later time."

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

Hello, I wanted to ask that when is the round rated for us? 1. after register 2. after opening a problem(but not submitting)

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

    Yes, the rules say that — If you register for a rated event and proceed to open any of the problems during the coding phase, your rating will be affected following the match.

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

Gentle Reminder: Match begins in 2 hours!

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

    In the Java applet, I and many people I know can't enter past contest's arena.

    Is there any problem going on with the arena?

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

      Unfortunately, indexing of the old problems and data is very slow and thus it takes a lot of time on some of them.

      Very sorry about that!

      I would suggest using Web Arena for the same for the moment. We are not focussing on improving this as we are dedicated to bringing the new arena asap.

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

        That doesn't affect live contests right? I assume it is safe to be on the applet for today's SRM.

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

Why is the web arena so slow to load? I tried registering 3 minutes prior the ending time of registration but it didn't open :(

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

    The arenas have been shit for a long time, that's a well-known fact.

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

Everyone's having such interesting contests... and I'm just sitting here wrangling pandas.DataFrames.

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

Draft of the editorial: click here

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

in EnlargeTheCave is there any need of BFS?

count all resticted '#' that is Adjacent to 'K' and subtract it out from total number of '#'.

Correct me if i am wrong?

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

    You are wrong, this doesn't even work on the examples. The kobolds can block you from accessing parts of the rocks. Remember that the cave must be connected, you cannot just change random '#'s into '.'s.

    E.g., example 3 is the following:

    {"###K########",
     "#.#K########",
     "..#K########",
     "############"}
    14
    

    The biggest cave you can make has area=9, even though you have a lot of rocks on the right.