acraider's blog

By acraider, history, 11 months ago, In English

Have you ever wondered what are top performers doing better apart from just putting hours and solving problems??

Read this whole and you might just get a new perspective on what can “Practice” really bring to you… or how should you target to do a really efficient one. A little on Pedagogy side, but I hope it will be an interesting read.

I am very happy to get more suggestions, as these are personal learnings that I have noticed in the last 4 years of actively teaching others Competitive programming, DSA, and working on pedagogy and gamification aspects of trainings.

Well, Lets start with a hard fact

Solving problems beyond a certain level actually requires you to have at-least these 2 things:

1. A decent IQ and Maths Skills. 2. Good “Practice” with an intent to abstract.

Let me explain you what these 2 mean, from best of my knowledge. I will focus more on the second one though…

Have a decent IQ and Maths Skills.

Ofcourse till a certain level, it’s just about “practice” and knowing coding language (Implementation Skills), but as you start growing beyond say 1800-2000 rating level, its starts sharply hitting you.

You need Good IQ and Maths skills to be really at the the top. Strong Knowledge of Counting, Number theory, Geometry, Probability, Linear algebra starts getting asked in problems and you always need some Good IQ to start generating good observations and connecting the dots to things you might have learned in the “Practice”.

Well this blog is not on this point, so I will keep it till this and not digress much. After all, your time is precious! So keep reading.

Intense “Practice” with an intent to abstract.

Ok, I agree that it’s a sentence with a lot of buzzword-y terms, but it all will make sense soon.

So you practice to improve right?

Try to seek answers for these yourself:

  1. How do you select questions that you are going to practice?
  2. What are some objective takeaways from any problem that you look for? Or are you just trying to memorise the solution of that exact problem?
  3. How do you ensure that you learn and retain maximum from a problem?

Have you ever thought about these or it has been just been random problem solving by putting your heads down. Well unless you have a trainer who is doing all this for you, you should really be investing some time in it.

Also, I don’t think pedagogy ever has been taken seriously in a field like CP. It has mostly been people who are subconsciously doing these and are improving and rest are finding it difficult.

So what’s the solution Vivek ???

I am no expert on the same, but over years what I have realised is what learners are picking up from practice can be classified into one of these 4 Categories.

  1. Concept

  2. Tactic

  3. Form

  4. Framework

Before I explain them, quick question. Have you ever played MMORPG / RPG Game? (I expect all of you to say Yes… expecting all of you to be geeky gamers like me in old days :P)

Back in my childhood, I used to play a lot of them. In fact design many of them using 001GameEngine.

When you play a RPG game, a typical setup is the following

  1. You are at Level 1.
  2. You choose certain monsters / perform some quests.
  3. These give your some Drops and XP.
  4. The more XP you collect you level up.
  5. The Drops give you Special Weapons that have certain types of stat point.
  6. As you progress you start seeing harder monsters, for which you have to strategise on which weapon to use. Say there is a water type monster and you know that Fire weapons will work much better on them.

I feel problem-solving in general is exactly like this. More so in CP.

  1. You start with basic language implementation skills (Level 1)
  2. You chose Problems (monsters) / Topic Questions (Quests)
  3. Each problem drops builds some Concept and Frameworks (XP) and teaches some Forms and Tactics (Drops)
  4. As you see harder problems, you use your Concepts and Frameworks (XP) to strategise an attack and use the tactics and forms (Drops) you have collected overtime that best fits.

Hmmm… quite similar right?

Let’s now understand what these are and how can they be truly used.

The 4 Fundamentals

Concepts :

These are fundamental Algorithmic pieces that you learn (little theoretic) that are used directly to solve or code standard problems.

Eg. DP is a simple memoization concept over what you have learned on Backtracking. You learn how to code basic idea too in this.

Framework :

These are first level questions you ask yourself as you see a problem to decide what can potentially be used. Asking good questions to yourself can be key in solving problems.

Eg. “This Is a Tree problem and we need to do counting. Can we use DP to solve it? Some maths maybe?”.

If gives you the path to progress in a problem, so that it’s not haphazard (I'm not saying diffused thinking is bad, its just not the thing always to start with, atleast for standard doable problems).

Form:

Standard class of applications that you see in a particular type of problems.

Eg. Most of tree-dp (Which itself is a Form) problems generally fall in one of these subforms.

  1. Maintaining parent state with a state. (Whether the parent was taken or not).
  2. Merging subtree contributions. (Like some knapsack on each subtree).
  3. Maintaining full ancestral states (Like GCD of root till this node).

Usually this is something that you pickup when you see a lot of problems of the same type.

Tactic :

These are independent ideas that are generally used to reduce/solve the subproblems or optimisation issues.

Eg. Say we have a knapsack type solution where we merge

DP(node,Items taken in subtree) for a Bunch of Childs.

One tactics that exist that reduces this from O(N^3) Dp to a O(N^2) dp is that when you are merging the child’s dp value, maintain the current size and only update potentially till cur_size+new_child_size in the dp table.

Now if you don’t know this tactic, there is no chance you can solve problems that need it. [If you don’t, learn it from here : https://codeforces.com/contest/816/submission/37993710]

These are the primary 4 things that you should focus on when you are practicing.

Want to see another example of usage of this ? Just made a video explaining the same too : https://www.youtube.com/watch?v=F2HgeehAaio

Now ofc you might ask me Vivek.. Ok, that’s all good, but what should I do now??

Improve your practice !!

Most students who comeup to me and ask me that ‘why are they not improving from a very long time ??’ … mostly the issue is with one of the following.

  1. They are not practicing.
  2. Their practice strategy is absolute garbage.
  3. They are too impatient to see improvement, as this domain does takes time.

You will not be able to improve in a RPG game ...

  1. If you keep defeating simple monsters much lesser than your level.
  2. Defeat a monster and then leave the DROP and XP you should have gained (very very common). You will never improve.
  3. If you want to be level 100 in 1 day (Unrealistic expectations).

Your goal while solving any problem shouldn’t be to memorise how to solve this problem, but analysing what can you actually take away from this that you can use to solve something in real contests.

How to actionably do this ?? Post solving a question, just retrospect what where the new

  1. FRAMEWORK question you picked (How would you think about something like this next time ?).
  2. CONCEPT you learned (Go to some site and learn it).
  3. FORMS you have built (Collect problems of similar type and see what are you using in them repeatedly),
  4. TACTICS used that you can pickup (See for optimisations and observations).

If you are seeing a lot of problems in practice that is leading to no new thing in this list, your practice (sorry to say) is bogus.

If you are seeing too many in every problems, then maybe you collect them (which is difficult to be recalled), and requires too much of mana (I think I should stop playing game :D)

How to choose problems that will give you more of them… or how to work on the memory recall part of it ?? well that’s hard and I will keep it for another long blog (It has been more than 2 hours of me thinking and writing this… sorry).

If you read till this, it on its own means 100 upvotes for me. Looking forward to your take in the comments :D. If more people like these, I will write more things on the pedagogy side. See ya in the comments.

TL;DR: Please don’t be at the bottom of this pillar.

  • Vote: I like it
  • +118
  • Vote: I do not like it

»
11 months ago, # |
  Vote: I like it +5 Vote: I do not like it

Summary? Solve harder problem than ur level

»
11 months ago, # |
  Vote: I like it -8 Vote: I do not like it

The more XP you collect you level up

»
11 months ago, # |
Rev. 3   Vote: I like it +30 Vote: I do not like it

Summary : Think CP as a Game and try to tackle it while enjoy playing it.

»
11 months ago, # |
Rev. 2   Vote: I like it +9 Vote: I do not like it

It was about time a blog like this one came out. It should have happened long back and maybe it did several years ago but at the moment it's a very relevant blog. I personally would consider having this added to the catalog section.

Also looking forward to part 2 :D

»
11 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Looking forward for more of such content !!!

»
11 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Cp will help me to get into zomato

»
11 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Very helpful content

»
11 months ago, # |
  Vote: I like it +3 Vote: I do not like it
Hmm!
»
11 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Nice blog.Looking for more blogs from you.

»
11 months ago, # |
  Vote: I like it 0 Vote: I do not like it

cp will make me a better person.

»
11 months ago, # |
  Vote: I like it +36 Vote: I do not like it

Solid blog with good advice!

I'll add another point here, especially for folks feeling stuck at the 1800-2000 level, which is to dig deeper. The point beyond which you'll give up on a problem on average should be longer than for someone say at the 1400 level, because there are lower chances it is something completely new that you don't know already. It's hard to define a number of hours though, very subjective, changes from problem to problem and mostly depends on gut feel.

When you do read an editorial for a problem you couldn't solve, don't read the full thing in one go. Only read it upto the first point where you see something new that you didn't discover when you were trying to solve it. Stop there, go back to the problem and try to figure out the rest yourself, keep repeating this. Doing this in one problem say 3 times will probably add more value than reading 10 editorials straight up.

  • »
    »
    11 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Great points Saharsh.

    I still remember a stint during my ICPC prep where i thought let's just read problems and editorials back to back, so that i just know the ideas.

    Turns out post 2-4 days of that, i was performing at a performance rating of delta -400. Couldn't get any good observation.

    Spending proper time and incremental improvement are key parts even for technique's memory encoding and recall.

  • »
    »
    11 months ago, # ^ |
      Vote: I like it +16 Vote: I do not like it

    For me the better you are the more freedom you have to simply jump to the editorial because you're more likely to be able to recognize that you don't understand the solution than others. That indeed is something that unexperienced folks have to be careful of, I think one of the most common things to make progress difficult for people is reading the editorial, ACing and not trying to understand the solution.

    Ofc my experience might differ from others since it seems that my memory is better than most, but I think it's undenieable that lots of people "upsolve" by copying (not copy pasting, just coding it as explained from the editorial) the solution without reflecting about anything.

    • »
      »
      »
      11 months ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      i have heard this term before

      Spoiler
      • how to get most out of it from problems
      • what are the information we can collect from problems
      • type of problems to choose
      • how much time we should spend on problems before giving up

      help will be appreciated

      :) thanks in advance

  • »
    »
    11 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Excellent point said

»
11 months ago, # |
  Vote: I like it 0 Vote: I do not like it

Nice Blog

»
11 months ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

If you're done reading the blog then SOLVE SOME PROBLEMS.