結果

問題 No.2873 Kendall's Tau
ユーザー 寝癖寝癖
提出日時 2024-08-24 13:53:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,232 ms / 4,500 ms
コード長 1,490 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 165,012 KB
最終ジャッジ日時 2024-08-24 13:53:58
合計ジャッジ時間 22,556 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
67,228 KB
testcase_01 AC 57 ms
67,668 KB
testcase_02 AC 61 ms
68,304 KB
testcase_03 AC 62 ms
66,916 KB
testcase_04 AC 59 ms
68,376 KB
testcase_05 AC 58 ms
66,900 KB
testcase_06 AC 62 ms
67,660 KB
testcase_07 AC 1,169 ms
140,420 KB
testcase_08 AC 1,225 ms
159,036 KB
testcase_09 AC 1,164 ms
140,424 KB
testcase_10 AC 1,232 ms
165,012 KB
testcase_11 AC 1,132 ms
139,780 KB
testcase_12 AC 1,150 ms
158,388 KB
testcase_13 AC 435 ms
96,824 KB
testcase_14 AC 953 ms
148,612 KB
testcase_15 AC 323 ms
91,764 KB
testcase_16 AC 291 ms
90,080 KB
testcase_17 AC 841 ms
126,280 KB
testcase_18 AC 684 ms
121,416 KB
testcase_19 AC 869 ms
127,920 KB
testcase_20 AC 310 ms
91,564 KB
testcase_21 AC 736 ms
120,072 KB
testcase_22 AC 380 ms
98,460 KB
testcase_23 AC 767 ms
120,916 KB
testcase_24 AC 199 ms
84,064 KB
testcase_25 AC 284 ms
90,040 KB
testcase_26 AC 886 ms
124,320 KB
testcase_27 AC 568 ms
113,288 KB
testcase_28 AC 989 ms
139,956 KB
testcase_29 AC 1,058 ms
148,704 KB
testcase_30 AC 252 ms
86,800 KB
testcase_31 AC 366 ms
93,908 KB
testcase_32 AC 731 ms
110,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

import typing

class FenwickTree:
    '''Reference: https://en.wikipedia.org/wiki/Fenwick_tree'''

    def __init__(self, n: int = 0) -> None:
        self._n = n
        self.data = [0] * n

    def add(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n

        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n

        return self._sum(right) - self._sum(left)

    def _sum(self, r: int) -> typing.Any:
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r

        return s


N = int(input())
pos = [list(map(int, input().split())) for _ in range(N)]

# 座標圧縮
xs, ys = sorted(set([x for x, y in pos])), sorted(set([y for x, y in pos]))
for i in range(N):
    x, y = pos[i]
    pos[i] = (bisect_left(xs, x), bisect_left(ys, y))

# x座標の昇順
pos.sort()

# x座標ごとにy座標を管理
y_pos = [[] for _ in range(len(xs))]
for x, y in pos:
    y_pos[x].append(y)

# fenwick treeでP,Q,R,Sを求める
ft = FenwickTree(len(ys))
P, Q, R, S = 0, 0, N*(N-1)//2, N*(N-1)//2
for yp in y_pos:
    for y in yp:
        P += ft.sum(0, y)
        Q += ft.sum(y+1, len(ys))
    for y in yp:
        ft.add(y, 1)
    R -= len(yp)*(len(yp)-1)//2
for i in range(len(ys)):
    cnt = ft.sum(i, i+1)
    S -= cnt*(cnt-1)//2

print((P-Q)*(R*S)**(-0.5))
0