結果
問題 | No.2873 Kendall's Tau |
ユーザー | Today03 |
提出日時 | 2024-09-06 22:42:49 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,250 bytes |
コンパイル時間 | 3,297 ms |
コンパイル使用メモリ | 268,060 KB |
実行使用メモリ | 34,728 KB |
最終ジャッジ日時 | 2024-09-06 22:43:34 |
合計ジャッジ時間 | 11,042 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 118 ms
12,872 KB |
testcase_14 | WA | - |
testcase_15 | AC | 65 ms
8,688 KB |
testcase_16 | AC | 68 ms
8,984 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 67 ms
8,916 KB |
testcase_21 | WA | - |
testcase_22 | AC | 98 ms
11,024 KB |
testcase_23 | WA | - |
testcase_24 | AC | 31 ms
6,940 KB |
testcase_25 | AC | 61 ms
8,668 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 48 ms
7,408 KB |
testcase_31 | AC | 94 ms
11,092 KB |
testcase_32 | WA | - |
ソースコード
#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 cup = 0, cdw = 0; for (int i = N * 2 - 1; i >= 0; i--) { for (int y : YS[i]) { cup += ft.sum(y + 1, N * 2); cdw += 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 * (cup - cdw) / sqrt(cx * cy); printf("%.10Lf\n", ans); }