結果

問題 No.2873 Kendall's Tau
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-09-06 22:08:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 756 ms / 4,500 ms
コード長 1,964 bytes
コンパイル時間 5,672 ms
コンパイル使用メモリ 325,840 KB
実行使用メモリ 16,268 KB
最終ジャッジ日時 2024-09-06 22:09:16
合計ジャッジ時間 16,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 651 ms
12,964 KB
testcase_08 AC 688 ms
15,112 KB
testcase_09 AC 653 ms
12,940 KB
testcase_10 AC 756 ms
16,268 KB
testcase_11 AC 706 ms
12,968 KB
testcase_12 AC 672 ms
15,244 KB
testcase_13 AC 196 ms
6,944 KB
testcase_14 AC 591 ms
13,420 KB
testcase_15 AC 99 ms
6,944 KB
testcase_16 AC 105 ms
6,944 KB
testcase_17 AC 468 ms
10,856 KB
testcase_18 AC 350 ms
9,608 KB
testcase_19 AC 469 ms
11,404 KB
testcase_20 AC 108 ms
6,940 KB
testcase_21 AC 383 ms
9,932 KB
testcase_22 AC 156 ms
6,940 KB
testcase_23 AC 389 ms
9,952 KB
testcase_24 AC 44 ms
6,944 KB
testcase_25 AC 95 ms
6,940 KB
testcase_26 AC 499 ms
10,612 KB
testcase_27 AC 282 ms
8,696 KB
testcase_28 AC 549 ms
13,836 KB
testcase_29 AC 601 ms
14,860 KB
testcase_30 AC 78 ms
6,940 KB
testcase_31 AC 154 ms
6,940 KB
testcase_32 AC 381 ms
10,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;

template <typename T = long long> struct CC {
    bool initialized;
    vector<T> xs;
    CC() : initialized(false) {}
    void add(T x) { xs.push_back(x); }
    void init() {
        sort(xs.begin(), xs.end());
        xs.erase(unique(xs.begin(), xs.end()), xs.end());
        initialized = true;
    }
    int operator()(T x) {
        if (!initialized)
            init();
        return upper_bound(xs.begin(), xs.end(), x) - xs.begin() - 1;
    }
    T operator[](int i) {
        if (!initialized)
            init();
        return xs[i];
    }
    int size() {
        if (!initialized)
            init();
        return xs.size();
    }
};

ll f(int n, vector<int> x, vector<int> y) {
    ll ret = 0;
    CC<int> cc;
    rep(i, 0, n) { cc.add(y[i]); }
    rep(i, 0, n) { y[i] = cc(y[i]); }
    vector<pair<int, int>> p(n);
    rep(i, 0, n) p[i] = {x[i], -y[i]};
    sort(p.begin(), p.end());
    fenwick_tree<int> fw(n);
    for (auto [x, y] : p) {
        y *= -1;
        ret += fw.sum(0, y);
        fw.add(y, 1);
    }
    return ret;
}

ll g(int n, vector<int> x) {
    ll ret = 0;
    map<int, int> ma;
    rep(i, 0, n) { ma[x[i]]++; }
    rep(i, 0, n) { ret += n - ma[x[i]]; }
    ret /= 2;
    return ret;
}

int main() {
    int n;
    cin >> n;
    vector<int> x(n), y(n);
    rep(i, 0, n) cin >> x[i] >> y[i];

    vector<int> xm(n), ym(n);
    rep(i, 0, n) {
        xm[i] = -x[i];
        ym[i] = -y[i];
    }
    double P = f(n, x, y) + f(n, xm, ym);
    rep(i, 0, n) { x[i] *= -1; }
    double Q = f(n, x, y) + f(n, xm, ym);
    rep(i, 0, n) { x[i] *= -1; }
    double R = g(n, x);
    double S = g(n, y);
    cerr << P << " " << Q << " " << R << " " << S << endl;
    double ans = (P - Q) / sqrt(R * S);
    cout << fixed << setprecision(15) << ans << endl;
}
0