ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 2121. Intersection of Parabolas

Precision errors?
Posted by Timothy Mou 23 May 2019 20:14
I believe I am having precision errors when calculating the solution.
I changed from doubles to long doubles and got one more test case, so I believe my solution is correct but not precise enough.
Any tips to resolve this?
Re: Precision errors?
Posted by Timothy Mou 23 May 2019 21:16
Never mind, there was simplification in the calculations and then I just hard-coded printed out the decimals. This problem is just cancer
Re: Precision errors?
Posted by Felix_Mate 3 Jun 2019 20:29
Yes
Some tests:
a = 1
ans = 3.666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666667

a = 1.5
ans = 5.666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666667

a = 666
ans = 2663.66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666674

a = 1000000000000000000
ans = 3999999999999999999.666666666666666666666666666666666666666666666666666666666666666333333333

Edited by author 03.06.2019 20:30