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

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

https://codeforces.com/contest/629/submission/46721512 This is the link to my solution to 629D. I am getting WA on 59th testcase. The error is of the order of exp(-5) but I am not able to figure out the reason why I am getting that error. I have set the precision to 12. Many other solutions with same precision have passed. Is there something else I am missing?

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

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

Auto comment: topic has been updated by rahulb (previous revision, new revision, compare).

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

Try storing pi as long double

long double pi = acosl(-1)

Your method will cast your pi value into double when not adding suffix l to the number.

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

This is actually not a precision error. The answer is basically an integer multiplied by PI, so you can never get a precision error if you find the integer part correctly.

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

I haven't read tried to understand your solution but there might be a problem with position[r*r*h]=i;, since there can be multiple values of r*r*h.