結果

問題 No.1300 Sum of Inversions
ユーザー roarisroaris
提出日時 2020-11-27 23:02:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 688 ms / 2,000 ms
コード長 1,263 bytes
コンパイル時間 948 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 175,564 KB
最終ジャッジ日時 2024-07-26 19:19:19
合計ジャッジ時間 18,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,200 KB
testcase_01 AC 41 ms
55,000 KB
testcase_02 AC 40 ms
54,796 KB
testcase_03 AC 518 ms
135,128 KB
testcase_04 AC 518 ms
123,964 KB
testcase_05 AC 430 ms
115,224 KB
testcase_06 AC 576 ms
160,940 KB
testcase_07 AC 557 ms
141,140 KB
testcase_08 AC 618 ms
166,020 KB
testcase_09 AC 622 ms
165,800 KB
testcase_10 AC 353 ms
123,976 KB
testcase_11 AC 356 ms
122,476 KB
testcase_12 AC 510 ms
134,080 KB
testcase_13 AC 507 ms
124,176 KB
testcase_14 AC 688 ms
175,564 KB
testcase_15 AC 659 ms
165,808 KB
testcase_16 AC 533 ms
135,724 KB
testcase_17 AC 343 ms
122,240 KB
testcase_18 AC 393 ms
114,476 KB
testcase_19 AC 466 ms
119,624 KB
testcase_20 AC 469 ms
120,228 KB
testcase_21 AC 478 ms
120,104 KB
testcase_22 AC 436 ms
115,316 KB
testcase_23 AC 614 ms
161,172 KB
testcase_24 AC 432 ms
115,448 KB
testcase_25 AC 380 ms
117,440 KB
testcase_26 AC 370 ms
118,312 KB
testcase_27 AC 416 ms
115,500 KB
testcase_28 AC 651 ms
174,544 KB
testcase_29 AC 468 ms
120,048 KB
testcase_30 AC 626 ms
166,144 KB
testcase_31 AC 428 ms
114,928 KB
testcase_32 AC 435 ms
115,572 KB
testcase_33 AC 222 ms
106,976 KB
testcase_34 AC 235 ms
105,360 KB
testcase_35 AC 354 ms
139,024 KB
testcase_36 AC 403 ms
174,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def compress(l):
    l = list(set(l))
    l.sort()
    idx = defaultdict(int)

    for i in range(len(l)):
        idx[l[i]] = i
    
    return idx

class BIT:
    def __init__(self, n):
        self.n = n
        self.bit = [0]*(n+1)

    def add(self, i, x):
        i += 1
        
        while i<=self.n:
            self.bit[i] += x
            i += i&(-i)

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

N = int(input())
A = list(map(int, input().split()))
idx = compress(A)
n = len(idx.keys())
upper1 = [0]*N
upper2 = [0]*N
bit1 = BIT(n)
bit2 = BIT(n)

for i in range(N):
    upper1[i] = bit1.acc(n)-bit1.acc(idx[A[i]]+1)
    bit1.add(idx[A[i]], 1)
    upper2[i] = bit2.acc(n)-bit2.acc(idx[A[i]]+1)
    bit2.add(idx[A[i]], A[i])

lower1 = [0]*N
lower2 = [0]*N
bit1 = BIT(n)
bit2 = BIT(n)

for i in range(N-1, -1, -1):
    lower1[i] = bit1.acc(idx[A[i]])
    bit1.add(idx[A[i]], 1)
    lower2[i] = bit2.acc(idx[A[i]])
    bit2.add(idx[A[i]], A[i])

ans = 0
MOD = 998244353

for i in range(N):
    ans = (ans+A[i]*upper1[i]*lower1[i]+upper1[i]*lower2[i]+upper2[i]*lower1[i])%MOD
    
print(ans)
0