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

Автор Denyou, история, 2 года назад, По-английски

I am so desperate that I risk no longer doing competitive programming because of my rating which didn’t even reach pupil after having solved 650 problems with different difficulties that qualify me to reach a better level.

i feel like i have lost 2 years…

any solutions ??

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

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

When you're down, the only way is up :)

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

I don't know why. The difficulty of the problems you've solved seems really good for a newbie, if you want you can DM me for doubts or doing some virtual contest, don't give up!

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

i think your solutions are too complicated, to solve easy problems fast, you need to think a simple solution, if the problem has low constraints sometime brute force works, othewise its greedy, prove it or guess that it works and then code. remember that if 5000 people solved the problem in 5 minutes then it must be very easy

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

    let's see what you did in https://codeforces.com/contest/1620/problem/A that you struggled with

    Spoiler

    my solution:

    Spoiler

    Your solution for problem C in last contest was extremely overcomplicated, and you should never use unordered_map or unordered_set unless you are LGM or something, because it isn't deterministic and probably that why it was hacked. also it is useless in div2 because the fastest problems can be solved in o(n log(n)), even reading the input is o(n log(n))

    My solution was: sort the input in decreasing order and check numbers from n to 1 keeping a visited array, i used two loops in O(n^2) since the constraint is just 50. I thought of using bitsets at first but since it was div3 problem C, i did that and it worked

    I recommend you to read https://usaco.guide/

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

      While I agree that in some situations you need to be careful with them to avoid possible collisions or nondeterministic iteration order, waiting until you're an LGM to use unordered sets and maps seems unnecessary, given how useful they are. Also, in this case, the hack resulted in a WA, so hash collisions aren't the culprit.

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

Write more rounds. I spent 1.5 years to get a specialist

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

The graph is beautiful! What's it drawn by?

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

i feel like i have lost 2 years…

well, if you do feel so, then I would like to stress that people change, and so do their hobbies and interests, and it is fine if you no longer want to do something / take a break from something.

It doesn't mean that you tried something, failed at it, and had to quit. It can also mean that you tried something, stopped enjoying it, and moved on to something better. Good luck!

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

Honestly, I don't know why the number of solved problem matters. It all because of our strategy in practicing.

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

Don't be sad. Look at my rating, it is about 300 lower than yours.

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

Solving problems in practice is very good. But try to give virtual contests more n more. Also when u r unable to solve a problem, see its editorial but don't code that, code it after 3-4 days so that u yourself are able to apply the logic.

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

Recently, there are several blogs talking about this situation, and I strongly suggest you read them. One of them is this one, http://codeforces.com/blog/entry/98806, and hope that you could get some inspiration there. As for me, I practice by participating virtual contests from round 1, and when I feel it is time to check whether I have got improved or not, I would like to take a real contest then.