Reminder: in case of any technical issues, you can use the lightweight website m1.codeforces.com, m2.codeforces.com, m3.codeforces.com. ×

GGOSHAB's blog

By GGOSHAB, history, 19 months ago, translation, In English

Hello! Not so far I've solved a geometry problem. I was need to multiplicate some integers, but first time I did it with doubles and my solution got TLE. Than I changed doubles to long long and it got AC. Than I started some experiments and set type of numbers to doubles again and changed GNU C++17 compiler to MSVC and it also got AC. And now I'm confused with it. Adding #pragma GCC optimize("Ofast")(which includes "fast-math") doesn't help. Can you explain what is it and is it possible to make doubles working on GCC faster?(I need it bc MSVC ignores ios::sync_with_stdio(0);)

  • Vote: I like it
  • -3
  • Vote: I do not like it

»
19 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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