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

Автор Wayoutfinisher, 9 лет назад, По-английски

Hey everyone,

I want to know what concepts (ex**.implementation, sorting, greedy etc**.) do Div. 2 contests emphasize on. I need to know so I can improve on these areas so I can do better in future Div. 2 contests.

Thank you.

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

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

I think you can look at problemset and find out which types of problems usually exist in div2 contests. But as you said it is often implementation, greedy, maths, constructive, brute force, strings, sometimes graphs.

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

Sometimes dp

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

In my opinion in C,D,E you can expect a lot of stuff since it already overlaps with Div1. But for strictly Div2 problems — A,B, they usually emphasize on coming up with some simple but clever idea or being able to quickly implement an annoying algorithm. They usually don't require a lot of coding and often don't have some well-known algorithm in them, hence the "implementation,sorting,greedy" tags.

When I was starting in Codeforces at first, I found out that the best way to be better at Div2 problems is to solve Div2 problems. I see you've done only one official competition so there are still 200+ competitions waiting for you. You can virtually participate and try to get the A,B right in the time limit, or simply practice (though I prefer virtual participation).

When I first joined Codeforces I would do tons of virtual competitions and that quickly improves your skill of solving those A,B problems. Good luck :)

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

    Thanks Enchom

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

    If we are kind of ok with solving Div 2 (A, B) questions what algorithms would you recommend to level up now to move on to C problems and above? Should i go for dp 1 st or should i go for trees and then eventually graphs from there?

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

      How about just solve C problems and see what's on them...

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

        I was meaning to ask which one should we go for first

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

          And I am meaning that is a wrong way to think about it. Do not go by topic, just look at C problems and if you can't solve look at editorial and if there is topic you don't know learn that.

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

      Ignoring that my comment is from 5 years ago, of course if you can comfortably do A, B you move on. Always challenge yourself.

      Regarding topics, DP, trees and graphs in general are very basic so you will have to learn all eventually. There is no real benefit of prioritising one over another since you'll need them all if you want to do well.

      Finally, for beginners I'm a proponent of the approach SuperJ6 mentioned — solve problems and learn the concepts that are needed to solve them. It will make progress more natural and applications of the topics will be more obvious.