1
0
Fork 0

fix long double precision error

This commit is contained in:
arielherself 2024-12-22 03:29:41 +08:00
parent 592043cc14
commit 4a6712e156
Signed by: arielherself
SSH Key Fingerprint: SHA256:AK3cyo9tFsp7Mox7K0sYphleC8hReXhnRKxwuDT5LBc
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ using ull = unsigned long long;
#endif
using int128 = __int128_t;
using uint128 = __uint128_t;
using ld = long double;
using ld = __float128; // up to 1e-9 precision in binary search
using pii = pair<int, int>; using pil = pair<int, ll>; using pid = pair<int, ld>;
using pli = pair<ll, int>; using pll = pair<ll, ll>; using pld = pair<ll, ld>;
using pdi = pair<ld, int>; using pdl = pair<ld, ll>; using pdd = pair<ld, ld>;