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

Автор Fefer_Ivan, 11 лет назад, По-русски

Добрый вечер, Codeforces.

Сегодня в тренировки добавлены первые пять контестов из известной серии Andrew Stankevich Contest. Они полностью доступны для прорешивания и вирутального участия.

По моему опыту участия в Andrew Stankevich Contest'ах я могу сказать, что эти контесты всегда подготовлены качественно, состоят из интересных задач и в них всегда весело и интересно участвовать.

Как говорится, good luck and have fun.

P.S. Все контесты доступны в группе Контесты Андрея Станкевича

Прямые ссылки

Обратите внимание, что все задачи используют различные входные и выходные файлы. Их названия написаны в условиях и на вкладке задачи.

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

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

Я очень рад, что мои контесты появляются на тренировках Codeforces.

Спасибо за высокую оценку, хотя баги или слабые тесты там, конечно, к сожалению, встречаются.

Все материалы моих контестов распространяются под лицензией CC-BY-3.0 http://creativecommons.org/licenses/by/3.0

Всем удачи в тренировках!

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

Where can we find more of his contest? I personally will appreciate anyone who show me the way !

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

А почему 3 контест длится 5:30?

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

Очень хочется порешать, но вот блин)

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

Условия задач доступны только на англиском?

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

Вот бы сюда еще старых Петрозаводсков залили!

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

I think there are some bug in tests of the first contest. It's my submission on problem D of this contest: 3768052

at least for the first test it's ok, isn't it?

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

I like Andrew Stankevich Contests! Look forward for more!

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

Is there any chance that Petr Mitrichev contests from Petrozavodsk Training Camp could also appear? I have seen some at SGU, but I think not all of them.

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

It would be great if we could view others code in gym, at least after participating in gym.

Are there any editorials available for Andrew Stankevich Contest? Thanks for adding them in gym by the way.

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

    there are editorials, but all of them were shot on a camera and distributed among participants. most of them in russian.

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

    Actually you can see others' code after you become yellow and apply coach mode. So it is kind of stimulus to get higher rating ;)

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

      Do anyone tell me how to apply coach mode? Thanks.

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

        Go to gym, and in the bottom of the column on the right side of the screen you can see the button "Enable coach mode".

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

          I can't find such button :(. Are you sure that it's available for yellow coders?

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

            Quote from here: http://codeforces.com/blog/entry/6615?locale=en

            "Now not only the red coders can become coaches. The coders with a yellow handle are now accepted as well, provided that they have taken part in an official Codeforces round no earlier than 6 months ago and have taken part in at least 30 rated Codeforces contests."

            So, there are some extra restrictions as well. Sorry if I confused you with my previous comments.

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

В контесте "2003-2004 Летние Петрозаводские сборы, Andrew Stankevich Contest 3" в задаче F есть проблемы с кодировкой файлов ввода-вывода при сдаче на Java. После 20+ сабмитов оказалось, что файлы в кодировке KOI8_R, и надо вручную ее выставлять.

in = new BufferedReader(new InputStreamReader(new FileInputStream("dissim.in"),"KOI8_R"));
out = new PrintWriter(new OutputStreamWriter(new FileOutputStream("dissim.out"),"KOI8_R"));
  • »
    »
    11 лет назад, # ^ |
      Проголосовать: нравится +11 Проголосовать: не нравится

    Спасибо. Добавим это объявление в тренировке.

    В тестах действительно есть русские символы с кодами больше 127 и вероятно Java воспринимает их как utf-8.

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

    Это похлеще, чем рантайм из-за стековерфлоу в DSU)

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

Есть где-нибудь разборы, тесты и авторские решения в открытом доступе?

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

Я не понял, как 2, 3 и 7 контест попали на одни сборы, а 4, 5 и 6 — на другие?

Кроме того, я не понял, как один человек может готовить 3 полноценных петрозаводских тура каждые полгода, но на этот вопрос вряд ли кто-то сможет ответить, кроме andrewzta.

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

В задаче С 18-го котеста какойто странный комментарий чекера: * ������ �⢥� * wrong probability log, expected: -1335.470584, found: -1870.087529

UPD: Извините, разобрался

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

I think that these contests is the biggest contribution to the gym so far... I personally want to thank Fefer_Ivan for uploading and updating these contests :)

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

Where to get the tutorials for these contests?

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

Hi, I made few submissions to ASC 1 but all of them stuck on 'In queue' status, after 30 minutes or so they turn to 'Running on test 1' and after some 30 minutes more to 'Judgement failed'.

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

thanks very much,hope the last 45,46 contest will be on gym soon

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

Thank you very much for uploading these contests, I would give you many more upvotes than 1 if I could. I think this is the best possible source for team trainings. Quality of problems is very high, they are very interesting and well prepared :).

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

I had participated in the last two contests, I really like them.

The problems are really interesting but hard enough for my current level, I could solve only 1 problem in my both participations.

I think it could be very useful for many people if we can find ideas and solutions for this problems.

What about to open a post for each contest and make a semi-editorial together?

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

Hi, I am wondering how to submit code for these contests. I keep getting runtime error on test1. I believe something is wrong with the way I submit code since my code passes for other online judges with the same problem. I read from stdin and output to stdout.

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

    You are submitting solution to ASC1, where you should use files for input and output (you can see proper file names at list of problems), but you are using standard input/output streams instead of files — and that is why you can't pass even 1st test.

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

      I see. So I am supposed read from file and output to file as well? Thank you for the reply.

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

I just started doing the first contest,did 1st problem but couldn't do others as all other questions redirected to the problem statement of first problem.Can someone please look into this?

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

I have submitted some solutions in ASC 1, and they are in queue for 20 minutes or so, and still not processed at the time of writing this. Also, in gym (in coach mode even), solutions submitted by other contest managers(shown on top of standings) are not view-able by double-clicking that cell. Is this some bug or feature?

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

Can somebody who has tried ASC-31 , help me out. I put up this post days ago, and no reply.

http://codeforces.com/blog/entry/19042

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

Does anyone have got an accept in ASC47-J? I've tried several approaches but still got trapped.

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

are there editorials available in russian or otherwise?

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

Coach mode is not working for all of the ASCs. As soon as I open the ASC, coach mode automatically gets disabled.

Is it only me or someone else facing the same problem? MikeMirzayanov Can you please look into the problem?

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

    I just tried. And yes, I faced the same things as you did.

    Coach mode was automatically disabled. You may now enter the contest.

    This message appears at the right-down corner, and coach mode is disabled as it reads.

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

    Maybe it is because some tasks from ASC are used in acm.sgu.ru archive

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

      UPD: The bug is still not fixed. :( It would really help if coach mode is enabled for these contests as they are a great resource to learn.

      MikeMirzayanov Can you look into it?

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

        It is not a bug at all, it is because these contests are in a group, and when you're in a group, there is no coach mode. Only the owner of the group can see the testcase data.

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

Can anyone provide a link to the editorials of these problems (any language would work owing to google translate) ?

Without editorials, I don't think any problems are worth trying. From where would I or anyone else who got stuck in any problem is going to get any help ??