結果

問題 No.694 square1001 and Permutation 3
ユーザー H3PO4H3PO4
提出日時 2020-11-30 09:25:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 903 ms / 3,000 ms
コード長 790 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 193,204 KB
最終ジャッジ日時 2024-09-13 02:15:45
合計ジャッジ時間 7,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,180 KB
testcase_01 AC 36 ms
53,340 KB
testcase_02 AC 36 ms
53,516 KB
testcase_03 AC 48 ms
62,120 KB
testcase_04 AC 50 ms
63,176 KB
testcase_05 AC 52 ms
63,504 KB
testcase_06 AC 51 ms
63,480 KB
testcase_07 AC 430 ms
111,800 KB
testcase_08 AC 533 ms
123,448 KB
testcase_09 AC 903 ms
191,916 KB
testcase_10 AC 447 ms
108,656 KB
testcase_11 AC 890 ms
193,204 KB
testcase_12 AC 887 ms
193,008 KB
testcase_13 AC 37 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)

    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i


N = int(input())
A = [int(input()) for _ in range(N)]
d = {x: i for i, x in enumerate(sorted(list(set(A))), 1)}
Ac = [d[a] for a in A]

M = max(Ac)
ct = [0] * (M + 1)
for c in Ac:
    ct[c] += 1
for i in range(1, M + 1):
    ct[i] += ct[i - 1]

bit = Bit(M)
ans = [0] * N

for i, p in enumerate(Ac):
    bit.add(p, 1)
    ans[0] += i + 1 - bit.sum(p)
for i, p in enumerate(Ac[:-1]):
    ans[i + 1] = ans[i] - ct[p - 1] + (N - ct[p])
print(*ans, sep='\n')
0