結果
問題 | No.2873 Kendall's Tau |
ユーザー | Today03 |
提出日時 | 2024-09-06 22:46:11 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 451 ms / 4,500 ms |
コード長 | 2,265 bytes |
コンパイル時間 | 3,351 ms |
コンパイル使用メモリ | 267,776 KB |
実行使用メモリ | 34,376 KB |
最終ジャッジ日時 | 2024-09-06 22:46:24 |
合計ジャッジ時間 | 11,244 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const int INF = 1e9 + 10; const ll INFL = 4e18; /* 考察 P:=(i,j)(i<j)であって、二次元平面でjがiの右上にあるような組の個数 Q:=(i,j)(i<j)であって、二次元平面でjがiの右下にあるような組の個数 ->座標圧縮して平面走査かな */ template <typename T> struct FenwickTree { FenwickTree() = default; FenwickTree(int n) { this->n = n; dat = vector<T>(n); } void add(int i, T x) { i++; while (i <= n) { dat[i - 1] += x; i += i & -i; } } T sum(int l, int r) { return sum(r) - sum(l); } T operator[](int i) { return sum(i, i + 1); } int size() { return n; } private: int n; vector<T> dat; T sum(int r) { T ret = 0; while (r > 0) { ret += dat[r - 1]; r -= r & -r; } return ret; } }; int main() { ll N; cin >> N; vector<ll> val; vector<pair<ll, ll>> P(N); for (int i = 0; i < N; i++) { cin >> P[i].first >> P[i].second; val.push_back(P[i].first); val.push_back(P[i].second); } ranges::sort(val); val.erase(unique(val.begin(), val.end()), val.end()); auto get = [&](ll x) { return ranges::lower_bound(val, x) - val.begin(); }; vector<vector<ll>> YS(N * 2); for (int i = 0; i < N; i++) YS[get(P[i].first)].push_back(get(P[i].second)); FenwickTree<ll> ft(N * 2); ll pq = 0; for (int i = N * 2 - 1; i >= 0; i--) { for (int y : YS[i]) { if (y < N * 2 - 1) pq += ft.sum(y + 1, N * 2); if (y > 0) pq -= ft.sum(0, y); } for (int y : YS[i]) ft.add(y, 1); } vector<ll> cntx(N * 2), cnty(N * 2); for (int i = 0; i < N; i++) { cntx[get(P[i].first)]++; cnty[get(P[i].second)]++; } ll cx = 0, cy = 0, sumx = 0, sumy = 0; for (int i = 0; i < N * 2; i++) { cx += sumx * cntx[i]; sumx += cntx[i]; cy += sumy * cnty[i]; sumy += cnty[i]; } long double ans = 1.0 * pq / sqrt(1.0 * cx * cy); printf("%.10Lf\n", ans); }