Rating changes for last rounds are temporarily rolled back. They will be returned soon. ×

romarioputra's blog

By romarioputra, history, 4 years ago, In English

for beginner, what is the best tag to practice? implementation?

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

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Brute-force + implementation.

»
4 years ago, # |
  Vote: I like it +11 Vote: I do not like it

Most tags on codeforces specifically state one algorithm that is used in order to solve the problem(for example fft, 2sat), or a category of problems(like the ones solved with a greedy algorithm, or with dp).

In theory I think that the best tags for a complete beginner are brute force and implementation.

However, as soon as you begin to learn more advanced algorithms or ideas, or after you solve enough brute force and implementation problems, you have to try problems with more interesting tags(like dp or greedy).

From this point on, I feel like the tags aren't doing their job, for multiple reasons, for example: they sometimes are incomplete and also are usually modeled after the author's solution, even if it is not the only solution, so you might have a good idea that could potentially lead to a good solution, but then look at the tags an think that because it isn't in the tags, your solution is bad.

I think that the best way to continue improving at competitive programming using this website from this point on is just by participating in the contests and possibly by simulating contests, because they usually have a pretty good composition of problems, and of course, after you participate in contests a good practice is to think about the problems you didn't solve for about one hour and than look at the editorial.