1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| #include <bits/stdc++.h> using namespace std;
template<class T> void read(T &r) { r = 0; char ch; bool f = false; while (!isdigit(ch = getchar())) if (ch == '-') f ^= 1; while (isdigit(ch)) r = r * 10 + ch - 48, ch = getchar(); if (f) r = -r; }
const int maxn = 1e4 + 5, maxv = 2.5e3 + 5; const long long mod = 1e9 + 7; vector<int> y_in_x[maxv], tmp; int n, c[maxv], d[maxv]; long long ans; bool by[maxv], ii[maxv], ij[maxv];
void update(int c[], int pos, int w) { for (; pos <= 2500; pos += (pos & -pos)) c[pos] += w; } int ask(int c[], int pos) { int res = 0; for (; pos; pos -= (pos & -pos)) res += c[pos]; return res; } int ask(int c[], int l, int r) { return l > r ? 0LL : (ask(c, r) - ask(c, l - 1)); }
int main() { read(n); for (int i = 1, x, y; i <= n; i++) read(x), read(y), y_in_x[x].emplace_back(y); for (int i = 1; i <= 2500; i++) sort(y_in_x[i].begin(), y_in_x[i].end()); for (int i = 1; i <= 2500; i++) if (!y_in_x[i].empty()) { memset(by, 0, sizeof by), memset(c, 0, sizeof c), memset(d, 0, sizeof d); memset(ii, 0, sizeof ii); memset(ij, 0, sizeof ij); for (int y : y_in_x[i]) ii[y] = true, by[y] = true, update(c, y, y), update(d, y, 1); for (int j = i + 1; j <= 2500; j++) { if (!y_in_x[j].empty()) { tmp = y_in_x[i]; for (int y : y_in_x[j]) { ij[y] = true; if (!by[y]) by[y] = true, update(c, y, y), update(d, y, 1); if (!ii[y]) tmp.emplace_back(y); } sort(tmp.begin(), tmp.end()); int l = 0, ci = 0, cj = 0, pre = 0; for (int r = 0; r < tmp.size(); r++) { ci += ii[tmp[r]], cj += ij[tmp[r]]; if (!ci || !cj) continue; while ((ci - ii[tmp[l]]) && (cj - ij[tmp[l]])) ci -= ii[tmp[l]], cj -= ij[tmp[l]], l++; (ans += (1LL * ask(c, tmp[r], 2500) * ask(d, pre + 1, tmp[l]) - 1LL * ask(d, tmp[r], 2500) * ask(c, pre + 1, tmp[l])) % mod * (j - i)) %= mod; pre = tmp[l]; } for (int y : y_in_x[j]) ij[y] = false; } } } printf("%lld\n", ans); return 0; }
|