Please read the new rule regarding the restriction on the use of AI tools. ×

__Aniket__'s blog

By __Aniket__, history, 5 hours ago, In English

I was trying to solve Problem B from previous contest — round 976 div2. My solution is failing a testcase, its NOT TLE. Initially I thought maybe its due to Integer or Long overflow. To make sure I am not making any implementation errors, I even tried used the exact same code as given in editorial, still my code is failing testcase 8. Am I missing something, I tried reading other java solutions, but I think they encountered same problems, that's why most people used different approach while solving in java.

I am implementing the Code 1 of problem B in editorial.
Problem Linkhttps://codeforces.me/contest/2020/problem/B
Link to editorialhttps://codeforces.me/blog/entry/134516
Link to my submissionhttps://codeforces.me/contest/2020/submission/284059093

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
5 hours ago, # |
  Vote: I like it 0 Vote: I do not like it

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

»
4 hours ago, # |
  Vote: I like it +1 Vote: I do not like it

Most likely due to sqrt precision loss. Better use something like extra binary search to find an integer square root of a number. Or something like this:

https://codeforces.me/contest/2020/submission/284065784

  • »
    »
    4 hours ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Thanks for your help, it worked! I guess it's about time I start studying the implementation of built in functions so that I understand their limitations. You taught me something new, I wouldn't have thought that people implement their own square root functions because of precision issues, I always thought they just did it for speed.