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

Автор bolbas_twink, история, 3 года назад, перевод, По-русски

В моём коде ошибка исполнения. Я не знаю чем она вызвана, помогите пж: (код) Задача 100282D - Инверсии

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

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

as if problem 100282D exist

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

Could you give the problem statement in English?

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

Have you tried the following:

  • Write a very naive and simple solution to the problem (maybe exponential complexity) (if you can, you may also just copy someone else's solution)
  • Write a program to generate thousands of small (!) test cases
  • Using those two, find a test case where your program gives the wrong answer
  • Use print statements or a debugger to see where exactly your program does the wrong thing.

98% of WAs and REs can be resolved this way. People here don't have the time to delve into every code posted here, it's much harder to debug somebody else's code and being able to debug your own code is a valuable skill. It is also a very routine process that can be learned much faster than problem solving and algorithms.