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

Автор rumike, история, 12 дней назад, По-английски

Each time, I faced a heavy implementation problems, even If I had the idea of the solution earlier, I just lost myself in the process of resolving, and look at the editorial many times. Every time, I missed a detail, and that took me sometimes 30 minutes without even remark it. Suddenly when I look at the editorial again, I say oh what the hell? and repeat the same process, again and again.

I am so slow on heavy implementation, and I know the common advice is to solve more implementation problems, but I am trying that and it's hard as described before. Did someone faced the same problem, and overcomed it? At least for implementation problems in range 1800 — 2000. If yes please give me advice, how should I trained this type of problems.

Also any tips to become quicker on resolving problems in general is welcome.

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

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

Ask chatgpt to do the hard work

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

I've faced the same thing before, and my personal strategy is to not focus on simply solving any heavy implementation problems.

I think you should first identify more specific aspects of these problems that make them hard for you. To me, I was bad at data structures (other aspects can include constructive algorithm, brute force, etc.), so I practiced a lot of those. For example, I would try to replicate templates involving data structures, and this is a really hard thing to do, initially, but the only way out is to keep practicing.

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

for me, i usually solve how they said i should. like we have an elovator and it does this and that and bla bla and then i will IMPLIMENT what the prob says. it works like 90 % of the times.

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

Other than more practice, code style also matters in solving implementation problems. Knowing the full solution with all the conditions and then implementing it will be more helpful rather than figuring out various conditions and scenarios while implementing. One thing you can do is to break your solution into multiple parts and implement them separately, maybe use distinct functions for each part. Then it will be more readable and will help you to understand the purpose of each function, making it easier to identify and fix any bugs.