結果

問題 No.2873 Kendall's Tau
ユーザー kotatsugamekotatsugame
提出日時 2024-09-06 22:45:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,318 bytes
コンパイル時間 1,225 ms
コンパイル使用メモリ 96,176 KB
実行使用メモリ 9,708 KB
最終ジャッジ日時 2024-09-06 22:45:43
合計ジャッジ時間 6,437 ms
ジャッジサーバーID
(参考情報)
judge5 / 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,940 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,940 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 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>
#include<cassert>
#include<atcoder/fenwicktree>
using namespace std;
int N;
long long f(vector<int>x)
{
	sort(x.begin(),x.end());
	long long ret=0;
	for(int i=0;i<N;)
	{
		int j=i+1;
		while(j<N&&x[i]==x[j])j++;
		ret+=(long long)(j-i)*(N-j);
		i=j;
	}
	return ret;
}
long long g(vector<pair<int,int> >xy)
{
	sort(xy.begin(),xy.end());
	vector<int>vs(N);
	for(int i=0;i<N;i++)vs[i]=xy[i].second;
	sort(vs.begin(),vs.end());
	vs.erase(unique(vs.begin(),vs.end()),vs.end());
	atcoder::fenwick_tree<int>L(vs.size());
	for(int i=0;i<N;i++)
	{
		xy[i].second=lower_bound(vs.begin(),vs.end(),xy[i].second)-vs.begin();
	}
	long long ret=0;
	for(int i=0;i<N;)
	{
		int j=i;
		while(j<N&&xy[i].first==xy[j].first)
		{
			j++;
		}
		ret+=(long long)(j-i)*L.sum(0,xy[i].second);
		while(i<j)
		{
			L.add(xy[i].second,1);
			i++;
		}
	}
	return ret;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	vector<int>X(N),Y(N);
	vector<pair<int,int> >xy(N);
	for(int i=0;i<N;i++)
	{
		cin>>X[i]>>Y[i];
		xy[i]=make_pair(X[i],Y[i]);
	}
	long long R=f(X),S=f(Y);
	long long P=g(xy);
	for(int i=0;i<N;i++)xy[i].second=-xy[i].second;
	long long Q=g(xy);
	cout<<fixed<<setprecision(16)<<(P-Q)/sqrtl((long double)R*S)<<endl;
}
0