結果

問題 No.2873 Kendall's Tau
ユーザー n0ma_run0ma_ru
提出日時 2024-09-06 23:04:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,018 bytes
コンパイル時間 2,622 ms
コンパイル使用メモリ 220,204 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-09-06 23:05:00
合計ジャッジ時間 8,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 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 83 ms
6,940 KB
testcase_14 WA -
testcase_15 AC 45 ms
6,944 KB
testcase_16 AC 51 ms
6,940 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 50 ms
6,940 KB
testcase_21 WA -
testcase_22 AC 68 ms
6,944 KB
testcase_23 WA -
testcase_24 AC 22 ms
6,940 KB
testcase_25 AC 41 ms
6,940 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 34 ms
6,944 KB
testcase_31 AC 70 ms
6,940 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
template<class F, class S>
ostream& operator<<(ostream& os, pair<F,S>& p) {
    os << '(' << p.first << ',' << p.second << ')';
    return os;
}
template<class Iter>
void print(Iter beg, Iter end) {
    for (Iter itr = beg; itr != end; ++itr) {
        cerr << *itr << ' ';
    }
    cerr << '\n';
}
class BIT {
public:
    BIT(int n) 
    : n(n), d(n+1,0) {
    }
    // index番目にvalを加える
    void add(int index, ll val) {
        assert(0 <= index && index < n);
        ++index;
        for (int x = index; x <= n; x += x & -x) {
            d[x] += val;
        }
    }
    // [0, index)の総和
    ll sum(int index) {
        ll ret = 0;
        for (int x = index; x > 0; x -= x & -x) {
            ret += d[x];
        }
        return ret;
    }
    // [l, r)の総和
    ll sum(int l, int r) {
        l = max(0, l);
        r = min(r, n);
        return sum(r) - sum(l);
    }
private:
    int n;
    vector<ll> d;
};
int n;
vector<ll> x, y;
int main() {
    cin >> n;
    x.resize(n);
    y.resize(n);
    for (int i = 0; i < n; ++i) cin >> x[i] >> y[i];

    vector<int> ord(n);
    iota(ALL(ord), 0);
    ll p = 0, q=0, r=0, s=0;
    {
        sort(ALL(ord), [](int a, int b) {
            return y[a] < y[b];
        });
        ll now = -1e18;
        int cnt = 0;
        for (int i : ord) {
            if (y[i] == now) {
                ++cnt;
            } else {
                q += ll(n - cnt) * cnt;
                now = y[i];
                cnt = 1;
            }
        }
        q += ll(n - cnt) * cnt;
        assert(q % 2 == 0);
        q /= 2;
        dbg(q);
    }
    {
        sort(ALL(ord), [](int a, int b) {
            return x[a] < x[b];
        });
        ll now = -1e18;
        int cnt = 0;
        for (int i : ord) {
            if (x[i] == now) {
                ++cnt;
            } else {
                p += cnt * ll(n - cnt);
                now = x[i];
                cnt = 1;
            }
        }
        p += cnt * ll(n - cnt);
        assert(p % 2 == 0);
        p /= 2;
        dbg(p);
    }
    {
        auto tmp = y;
        sort(ALL(tmp));
        tmp.erase(unique(ALL(tmp)), tmp.end());
        for (int i = 0; i < n; ++i) y[i] = lower_bound(ALL(tmp), y[i]) - tmp.begin();
        BIT bit(tmp.size());
        vector<int> add;
        ll now = 1e18;
        for (int i : ord) {
            if (x[i] == now) {
                add.push_back(y[i]);
            } else {
                for (int j : add) {
                    bit.add(j, 1);
                }
                add.clear();
                now = x[i];
                add.push_back(y[i]);
            }
            r += bit.sum(0, y[i]);
            s += bit.sum(y[i]+1, tmp.size());
        }
        dbg(r)
        dbg(s)
    }
    double ans = (r - s) / sqrt(p * q);
    cout << fixed << setprecision(20) << ans << '\n';
}
0