Пожалуйста, подпишитесь на официальный канал Codeforces в Telegram по ссылке https://t.me/codeforces_official. ×

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

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

The first Online Round of the 2021 Topcoder Open Algorithm Competition has arrived! Round 1A will be held on Saturday April 17, 2021 at 12:00 UTC -4 and you are invited to compete.

How many will qualify?
The 750 highest scorers from each Round 1 will win a spot in Round 2 of the Algorithm Competition.

How to Compete?
Please note that you must register for this round in the Arena or Applet

Registration is open for the round and closes at 11:55 UTC -4. Be sure you register early to guarantee your spot in the round as registration is limited to the first 2,500 competitors. Please take a look at our How to Compete guide to understand Topcoder Algorithm rounds better.

Don't forget! There will be one more Round 1 — Round 1B on Wednesday, April 28, 2021 at 07:00 UTC -4.

New to Topcoder and the TCO21? The Algorithm Competition is one of the most fierce and popular tournaments. Battle up against some of the biggest names in coding. Learn more.

The Topcoder Open Algorithm Competition consists of an Onsite Finals and there are three ways to advance to the Onsite Finals:

  • Four online stages,
  • Four online rounds,
  • Up to five onsite regional rounds followed by one online wild card round.

TCO21 Algorithm Competition Schedule:
Round 1A: April 17 at 12:00
Round 1B: April 28 at 07:00
Round 2A: May 22 at 12:00
Round 2B: June 2 at 07:00 
Round 3: July 8 at 07:00
Round 4: July 31 at 12:00

All times are in UTC -4.

Some Important Links:: Match Results (match results, rating changes, challenges, individual test case results), Problem Archive, Problem Writing, Algorithm Rankings, Editorials and Older Editorials(SRM 710 and before),

Best of luck to you in the Arena!
- The Topcoder Community Team

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

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

Update: We are facing some issues setting up the Parallel Round for the members who got a bye or who qualified to Round 4 from Online Stages.

I will update here as soon as it is fixed.

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

we don't get editorials after the contest then what the meaning of doing topcoder

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

    Hey, We generally share the draft of the editorials right at the end of the contest in the arena. It takes a day or two to be published here: https://www.topcoder.com/?s=Editorials. Sorry if you were not able to locate them. Feel free to ask on the blog here incase yo are not able to locate them. Will make sure we put the link here as well after the round.

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

"""Don't forget! There will be one more Round 1 — Round 1B on Wednesday, April 8, 2021 at 07:00 UTC -4."""

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

If I got an automatic berth but lose rating and drop out of the top 250 in Parallel Round 1A, do I have to compete in 1B to qualify for round 2?

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

    On this page
    """Automatic Berths – The 250 members who have the highest Algorithm competition rating as of April 12, 2021 12:00 UTC -4, and who meet all of the following criteria will receive an automatic berth into Online Round 2:"""

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

Is arena giving timeout only to me while logging in?

hmehta can you please check this problem

I for sure have no internet problem (speed is around 16mbps)

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

Am I the only one having troubles with Arena right now?

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

I know its a Round 1, but isn't the 1000 still a bit too standard.

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

    It was brought to our attention that it is (apparently) a famous problem. Neither I nor the testers knew about that (and I actually tried searching for a similar problem). Apparently I'm bad at searching. I'm really sorry about that :(

    Disclaimer: I'm the problem set author.

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

    Do you have any links to similar problems?

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

      I still haven't found it :shrug: As I mentioned — I'm apparently bad at searching. But judging by the number of solutions I suppose it is, indeed, famous enough.

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

        Its not exactly that this exact problem is standard. Its just that if you've studied the basics of flows / matching, the flow network is really easy to construct. This was my 4th or 5th ever flows problem, and most of the time taken was due to trying to figure out how to recover flow edges in the template I was using.

        Like this feels somewhat similar to the problems discussed in https://www.topcoder.com/thrive/articles/Maximum%20Flow:%20Part%20Two.

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

          Those who copy-pasted atcoder library max flow which has a built-in function to recover flow edges had to debug C++17(on atcoder) -> C++11 (Topcoder) issues.

          To @admins Upgrade it. It's 2021.

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

            Yeah, its really annoying when C++14 and C++17 specific features don't work on TopCoder, and its the only major competitive coding platform that is still stuck on C++11.

            Not as bad as your case, but its was still annoying to have to replace auto type deducing greater<>() with greater<int>().

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

      https://infoarena.ro/problema/teroristi

      Here's one from the National Olympiad in Informatics in 2010. Though you need to do flow to get 100, create 26 * 26 nodes for the possible paper pieces.

      (The input is:

      First string is the message, then the paper pices, 2 chars for each face. The output is for each letter of the message what piece of paper do you use)

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

SO SO SOOOO waiting for C++17.