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

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

Hi everyone!

I have made a simple program which will give best order of solving problems during codeforces contest according to the user's speed. It will tell you whether it is better to solve problem in order C -> B -> A or B -> A -> C ( with many other permutations ) according to user's speed.

GitHub link

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

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

How do you determine speed on a new problem? I may solve div2 "C" level dp maths quickly, but I do get stuck at the easiest geometry questions.

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

    I have made it for usual codeforces round where user knows the time required to solve a problem. It can used to know the order if one knows the time required to solve different problems.

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

It is well-known that the optimal strategy is a descending order of (max score ÷ required time to solve).

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

Sometimes the seemingly "fastest solvable" problems can take hours to get debugged.