結果

問題 No.742 にゃんにゃんにゃん 猫の挨拶
ユーザー hedwig100hedwig100
提出日時 2020-05-09 11:00:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 121 ms / 2,500 ms
コード長 734 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-05 07:46:50
合計ジャッジ時間 1,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 24 ms
10,496 KB
testcase_11 AC 104 ms
12,288 KB
testcase_12 AC 121 ms
12,288 KB
testcase_13 AC 25 ms
10,496 KB
testcase_14 AC 24 ms
10,496 KB
testcase_15 AC 24 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(100000000)
input = sys.stdin.readline
MOD = 10 ** 9 + 7
INF = 10 ** 15

class BinaryIndexedTree():

    def __init__(self,init_val):
        self.bit = [0] + init_val
        self.n  = len(init_val)

    def sum(self,i):
        ret = 0
        while i > 0:
            ret += self.bit[i]
            i -= (i & -i)
        return ret
    
    def add(self,i,x):
        while i <= self.n:
            self.bit[i] += x
            i += (i & -i)

def main():
    N = int(input())
    M = [int(input()) for _ in range(N)]

    bit = BinaryIndexedTree([0] * N)
    ans = 0
    for i,m in enumerate(M):
        ans += i - bit.sum(m)
        bit.add(m,1)
    print(ans)
if __name__ == '__main__':
    main()
0