結果

問題 No.2873 Kendall's Tau
ユーザー tailstails
提出日時 2024-09-06 23:01:34
言語 cLay
(20240714-1)
結果
AC  
実行時間 54 ms / 4,500 ms
コード長 395 bytes
コンパイル時間 9,230 ms
コンパイル使用メモリ 228,372 KB
実行使用メモリ 16,812 KB
最終ジャッジ日時 2024-09-06 23:03:49
合計ジャッジ時間 10,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 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
7,876 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 0 ms
6,940 KB
testcase_07 AC 53 ms
16,436 KB
testcase_08 AC 53 ms
16,812 KB
testcase_09 AC 53 ms
15,420 KB
testcase_10 AC 51 ms
15,224 KB
testcase_11 AC 54 ms
14,844 KB
testcase_12 AC 52 ms
16,696 KB
testcase_13 AC 18 ms
8,720 KB
testcase_14 AC 41 ms
13,168 KB
testcase_15 AC 10 ms
8,048 KB
testcase_16 AC 10 ms
9,028 KB
testcase_17 AC 40 ms
12,632 KB
testcase_18 AC 30 ms
12,720 KB
testcase_19 AC 38 ms
13,236 KB
testcase_20 AC 11 ms
7,364 KB
testcase_21 AC 34 ms
12,112 KB
testcase_22 AC 15 ms
9,656 KB
testcase_23 AC 33 ms
13,112 KB
testcase_24 AC 6 ms
6,940 KB
testcase_25 AC 10 ms
6,940 KB
testcase_26 AC 41 ms
13,792 KB
testcase_27 AC 25 ms
9,268 KB
testcase_28 AC 43 ms
14,200 KB
testcase_29 AC 48 ms
13,924 KB
testcase_30 AC 9 ms
6,940 KB
testcase_31 AC 14 ms
9,792 KB
testcase_32 AC 33 ms
13,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@(x,y)[n],p=0,q=0,r=0,s=0,a,i,j;
coordcomp(n,x);
coordcomp(n,y);
sortA(n,y,x);
for(i=0;i<n;i=j){
	a=y[i];
	for(j=i;j<n&&y[j]==a;++j){
	}
	s+=i*(j-i);
}
sortA(n,x,y);
fenwick<ll>f;
f.malloc(n,1);
for(i=0;i<n;i=j){
	a=x[i];
	for(j=i;j<n&&x[j]==a;++j){
		p+=f.range(0,y[j]-1);
		q+=f.range(y[j]+1,n-1);
	}
	for(j=i;j<n&&x[j]==a;++j){
		f.add(y[j],1);
	}
	r+=i*(j-i);
}
wt((p-q)/sqrt(1.*r*s));
0