結果

問題 No.1300 Sum of Inversions
ユーザー roarisroaris
提出日時 2020-11-28 20:12:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 175,668 KB
最終ジャッジ日時 2024-09-12 23:36:47
合計ジャッジ時間 19,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,704 KB
testcase_01 AC 42 ms
54,996 KB
testcase_02 AC 42 ms
55,736 KB
testcase_03 AC 542 ms
135,196 KB
testcase_04 AC 527 ms
124,444 KB
testcase_05 AC 465 ms
114,924 KB
testcase_06 AC 613 ms
160,952 KB
testcase_07 AC 637 ms
141,488 KB
testcase_08 AC 678 ms
166,140 KB
testcase_09 AC 682 ms
165,768 KB
testcase_10 AC 397 ms
123,876 KB
testcase_11 AC 390 ms
122,396 KB
testcase_12 AC 562 ms
134,512 KB
testcase_13 AC 557 ms
124,020 KB
testcase_14 AC 747 ms
175,668 KB
testcase_15 AC 691 ms
165,712 KB
testcase_16 AC 589 ms
135,456 KB
testcase_17 AC 379 ms
121,976 KB
testcase_18 AC 436 ms
114,604 KB
testcase_19 AC 512 ms
119,876 KB
testcase_20 AC 514 ms
120,292 KB
testcase_21 AC 510 ms
120,268 KB
testcase_22 AC 474 ms
114,892 KB
testcase_23 AC 631 ms
161,000 KB
testcase_24 AC 468 ms
115,332 KB
testcase_25 AC 411 ms
117,524 KB
testcase_26 AC 401 ms
118,948 KB
testcase_27 AC 434 ms
115,716 KB
testcase_28 AC 698 ms
174,400 KB
testcase_29 AC 488 ms
119,888 KB
testcase_30 AC 681 ms
166,116 KB
testcase_31 AC 467 ms
114,956 KB
testcase_32 AC 453 ms
115,548 KB
testcase_33 AC 248 ms
106,476 KB
testcase_34 AC 256 ms
105,348 KB
testcase_35 AC 373 ms
138,940 KB
testcase_36 AC 431 ms
174,532 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())
bit1 = BIT(n)
bit2 = BIT(n)
upper1 = [0]*N
upper2 = [0]*N

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

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

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

ans = 0
MOD = 998244353

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

print(ans)
0