結果

問題 No.2873 Kendall's Tau
ユーザー 沙耶花沙耶花
提出日時 2024-09-06 21:42:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 627 ms / 4,500 ms
コード長 1,233 bytes
コンパイル時間 4,690 ms
コンパイル使用メモリ 279,352 KB
実行使用メモリ 20,056 KB
最終ジャッジ日時 2024-09-06 21:42:32
合計ジャッジ時間 14,380 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 527 ms
18,388 KB
testcase_08 AC 605 ms
18,780 KB
testcase_09 AC 531 ms
18,900 KB
testcase_10 AC 627 ms
20,056 KB
testcase_11 AC 524 ms
18,256 KB
testcase_12 AC 556 ms
18,600 KB
testcase_13 AC 150 ms
7,800 KB
testcase_14 AC 471 ms
16,712 KB
testcase_15 AC 83 ms
6,940 KB
testcase_16 AC 84 ms
6,940 KB
testcase_17 AC 372 ms
16,128 KB
testcase_18 AC 280 ms
11,412 KB
testcase_19 AC 365 ms
15,892 KB
testcase_20 AC 87 ms
6,944 KB
testcase_21 AC 311 ms
12,000 KB
testcase_22 AC 126 ms
8,184 KB
testcase_23 AC 307 ms
11,976 KB
testcase_24 AC 38 ms
6,940 KB
testcase_25 AC 77 ms
6,948 KB
testcase_26 AC 370 ms
15,508 KB
testcase_27 AC 229 ms
10,512 KB
testcase_28 AC 459 ms
17,488 KB
testcase_29 AC 516 ms
18,192 KB
testcase_30 AC 61 ms
6,940 KB
testcase_31 AC 116 ms
7,124 KB
testcase_32 AC 296 ms
11,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001
long long get(vector<long long> x,vector<long long> y){
	vector<long long> t = y;
	sort(t.begin(),t.end());
	t.erase(unique(t.begin(),t.end()),t.end());
	vector<pair<long long,long long>> p;
	rep(i,x.size()){
		p.emplace_back(x[i],lower_bound(t.begin(),t.end(),y[i])-t.begin());
	}
	sort(p.begin(),p.end());
	fenwick_tree<long long> fw(t.size());
	long long ret = 0;
	rep(i,p.size()){
		ret += fw.sum(p[i].second+1,t.size());
		fw.add(p[i].second,1);
	}
	return ret;
}
long long g2(vector<long long> x){
	long long n = x.size();
	long long ret = n*(n-1)/2;
	map<long long,long long> mp;
	rep(i,n){
		ret -= mp[x[i]];
		mp[x[i]]++;
	}
	return ret;
}
int main(){
	
	int n;
	cin>>n;
	vector<long long> x(n),y(n);
	rep(i,n){
		cin>>x[i]>>y[i];
	}
	long long P = get(x,y);
	rep(i,n){
		x[i] *= -1;
	}
	long long Q = get(x,y);
	long long R = g2(x),S = g2(y);
	long double ans = P-Q;
	ans /= sqrtl(R);
	ans /= sqrtl(S);
	ans *= -1;
	cout<<fixed<<setprecision(15)<<ans<<endl;
    return 0;
}
0