QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#742732#8177. Sum is Integer.5 ulp (Maxim Plyushkin, Egor Belousov, Maxim Inyutin)#WA 274ms22556kbC++232.0kb2024-11-13 17:11:482024-11-13 17:11:55

Judging History

This is the latest submission verdict.

  • [2024-11-13 17:11:55]
  • Judged
  • Verdict: WA
  • Time: 274ms
  • Memory: 22556kb
  • [2024-11-13 17:11:48]
  • Submitted

answer

#include <bits/stdc++.h>

using namespace std;

using u64 = uint64_t;
using u128 = __uint128_t;
using u256 = array<u128, 2>;

constexpr u128 mod = (u128)907763202420097943ull << 64 | 12508198021901489645ull, bnd = 3e10;
constexpr int N = 1e5 + 1;

u256 eprod(u128 a, u128 b) {
  u128 x = (u64)(a >> 0) * (u128)(u64)(b >> 0);
  u128 z = (u64)(a >> 64) * (u128)(u64)(b >> 64);
  u128 y = (u64)(a >> 64) * (u128)(u64)(b >> 0) +
           (u64)(a >> 0) * (u128)(u64)(b >> 64);
  u128 ylo = (u64)y;
  u128 yhi = y >> 64;
  u128 lo = x + (ylo << 64);
  u128 hi = yhi + (lo < (ylo << 64)) + z;
  return {hi, lo};
}

u256 dif(u256 a, u256 b) {
  a[0] -= b[0] + (a[1] < b[1]);
  a[1] -= b[1];
  return a;
}

u256 half(u256 a) { return {a[0] / 2, a[1] / 2 + (a[0] % 2 << 127)}; }

u128 red(u256 a) {
  u256 t = {mod, 0};
  for (int i = 129; i--; t = half(t)) if (!(a < t)) a = dif(a, t);
  return a[1];
}

auto& add(auto&& a, auto b) { return a -= (a += b) >= mod? mod: 0; }
auto& mul(auto&& a, auto b) { return a = red(eprod(a, b)); }
u128 fpow(u128 a, u128 b) { u128 r = 1; for (; b; b /= 2, mul(a, a)) if (b % 2) mul(r, a); return r; }

u128 inv[N];

int ft[2 * N];

void upd(int i, int x) { for (; i < 2 * N; i |= i + 1) ft[i] += x; }
int que(int i) { int res = 0 ; for (; i; i &= i - 1) res += ft[i - 1]; return res; }

int main() {
  for (u128 i = 1, f = 1; i < N; ++i) inv[i] = f, mul(f, i);
  for (u128 i = N - 1, f = fpow(inv[N - 1], mod - 2); --i; ) mul(inv[i], f), mul(f, i);
  u128 ps = bnd;
  vector<array<u128, 2>> v{{ps, 1}};
  int n; cin >> n;
  for (int i = 0; i < n; ++i) {
    int p, q; cin >> p >> q;
    add(ps, mul(+inv[q], p));
    assert(ps > bnd);
    v.push_back({ps - bnd, 2 * i + 2});
    v.push_back({ps, 2 * i + 3});
  }
  sort(v.begin(), v.end());
  int ans = 0;
  for (auto& [_, i]: v) {
    if (i % 2) upd(i / 2, 1);
    if (i % 2) ans += que(i / 2);
    else       ans -= que(i / 2);
  }
  cout << ans << '\n';
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 133ms
memory: 5184kb

input:

4
1 6
1 3
1 2
1 2

output:

2

result:

ok "2"

Test #2:

score: 0
Accepted
time: 133ms
memory: 5072kb

input:

5
1 1
2 2
3 3
4 4
5 5

output:

15

result:

ok "15"

Test #3:

score: 0
Accepted
time: 133ms
memory: 5136kb

input:

2
1 99999
99999 100000

output:

0

result:

ok "0"

Test #4:

score: -100
Wrong Answer
time: 274ms
memory: 22556kb

input:

200000
82781 82781
86223 86223
16528 16528
84056 84056
94249 94249
54553 54553
25943 25943
10415 10415
52417 52417
46641 46641
70298 70298
84228 84228
55441 55441
49326 49326
11753 11753
89499 89499
58220 58220
71482 71482
32373 32373
7251 7251
78573 78573
74268 74268
46682 46682
20314 20314
85519 8...

output:

1206156899

result:

wrong answer 1st words differ - expected: '10603308211', found: '1206156899'