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

Автор MrOnlineCoder, история, 5 лет назад, По-английски

I was participating in recent Round #574 (Div. 2) contest (and not really successfully :D) and was monitoring submissions/standings. What I wonder is: how do some red and other people send their complete solutions to a problem on 2nd or 3rd minute? Do they have access to the tasks before the contest? Or it's some special mode of participation or something? I need 2 minutes just to read the task and open the editor, and they finish it in that time?

Thanks in advance.

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

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

you can guess what output wants from the examples

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

read fast, type fast. I think these are biggest contributors. Reading english very fast is the biggest advantage.

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

    being a russian speaker is the biggest advantage

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

      Nah, you just need to read fast in English or Russian. And skip the story.

      I need 2 minutes just to read the task and open the editor, and they finish it in that time?

      Open the editor and copy your templates before the contest if you want to fight for the first submission ;p

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

they send also on 1st minute,experience matters;D

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

Having templates set and ready, a good internet connection that will take you to contest site immediately and skimming the problem will help. There is a difference between writing : REP(i,1,n) and for(int i=1; i<=n; i++) and other shortcuts. I think solving A within first 5 minutes is always possible though.

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

    There is a difference between writing : REP(i,1,n) and for(int i=1; i<=n; i++)

    True. I always refuse to debug any code which contains the first one