結果

問題 No.2873 Kendall's Tau
ユーザー FplusFplusFFplusFplusF
提出日時 2024-09-06 22:23:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,168 ms / 4,500 ms
コード長 1,746 bytes
コンパイル時間 5,251 ms
コンパイル使用メモリ 298,440 KB
実行使用メモリ 41,008 KB
最終ジャッジ日時 2024-09-06 22:24:14
合計ジャッジ時間 20,769 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1,093 ms
40,884 KB
testcase_08 AC 1,151 ms
41,008 KB
testcase_09 AC 1,141 ms
40,880 KB
testcase_10 AC 1,168 ms
40,880 KB
testcase_11 AC 1,099 ms
41,008 KB
testcase_12 AC 1,108 ms
39,172 KB
testcase_13 AC 246 ms
15,648 KB
testcase_14 AC 828 ms
32,844 KB
testcase_15 AC 116 ms
9,880 KB
testcase_16 AC 127 ms
10,256 KB
testcase_17 AC 785 ms
31,408 KB
testcase_18 AC 499 ms
24,040 KB
testcase_19 AC 695 ms
30,392 KB
testcase_20 AC 125 ms
10,328 KB
testcase_21 AC 585 ms
26,316 KB
testcase_22 AC 191 ms
13,376 KB
testcase_23 AC 567 ms
26,484 KB
testcase_24 AC 48 ms
6,944 KB
testcase_25 AC 107 ms
9,872 KB
testcase_26 AC 721 ms
31,492 KB
testcase_27 AC 387 ms
20,692 KB
testcase_28 AC 856 ms
34,700 KB
testcase_29 AC 982 ms
36,484 KB
testcase_30 AC 83 ms
8,604 KB
testcase_31 AC 176 ms
13,224 KB
testcase_32 AC 578 ms
26,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define replr(i,l,r) for (ll i=(ll)(l);i<(ll)(r);i++)
#define all(v) v.begin(),v.end()
#define len(v) ((ll)v.size())
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
template<class T> using super_set=__gnu_pbds::tree<T,__gnu_pbds::null_type,std::less<T>,__gnu_pbds::rb_tree_tag,__gnu_pbds::tree_order_statistics_node_update>;
ll f(vector<pll> v){
    super_set<tll> stx;
    super_set<pll> sty;
    ll ret=0;
    rep(i,len(v)){
        ret+=sty.order_of_key({v[i].second,-INF});
        ret-=stx.order_of_key({v[i].first,v[i].second,-INF})-stx.order_of_key({v[i].first,-INF,-INF});
        stx.insert({v[i].first,v[i].second,i});
        sty.insert({v[i].second,i});
    }
    return ret;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n;
    cin >> n;
    vector<ll> x(n),y(n);
    vector<pll> v(n);
    rep(i,n){
        cin >> x[i] >> y[i];
        v[i]={x[i],y[i]};
    }
    sort(all(v));
    ll p=f(v);
    rep(i,n){
        v[i].first*=-1;
    }
    sort(all(v));
    ll q=f(v);
    
    map<ll,ll> cx,cy;
    ll r=0,s=0;
    rep(i,n){
        r+=i-cx[x[i]];
        cx[x[i]]++;
        s+=i-cy[y[i]];
        cy[y[i]]++;
    }
    cout << fixed << setprecision(10) <<  (ld)(p-q)/sqrtl((ld)r*s) << '\n';
}
0