結果

問題 No.2873 Kendall's Tau
ユーザー Today03Today03
提出日時 2024-09-06 22:38:27
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,237 bytes
コンパイル時間 3,324 ms
コンパイル使用メモリ 269,396 KB
実行使用メモリ 28,172 KB
最終ジャッジ日時 2024-09-06 22:38:38
合計ジャッジ時間 11,184 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 115 ms
10,828 KB
testcase_14 WA -
testcase_15 AC 64 ms
7,776 KB
testcase_16 AC 71 ms
7,672 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 66 ms
7,920 KB
testcase_21 WA -
testcase_22 AC 96 ms
9,332 KB
testcase_23 WA -
testcase_24 AC 31 ms
6,944 KB
testcase_25 AC 61 ms
7,664 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 48 ms
6,940 KB
testcase_31 AC 93 ms
9,312 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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() {
    int N;
    cin >> N;
    vector<int> val;
    vector<pair<int, int>> 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<int>> 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, 2 * N);
            cdw += ft.sum(0, y);
        }
        for (int y : YS[i]) ft.add(y, 1);
    }

    vector<int> 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;
    for (int i = 0; i < N * 2; i++) {
        cx += 1ll * (N - cntx[i]) * cntx[i];
        cy += 1ll * (N - cnty[i]) * cnty[i];
    }
    cx /= 2;
    cy /= 2;

    double ans = 1.0 * (cup - cdw) / sqrt(cx * cy);
    printf("%.10lf\n", ans);
}
0