結果

問題 No.1300 Sum of Inversions
ユーザー ayaoniayaoni
提出日時 2020-11-27 23:40:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,245 ms / 2,000 ms
コード長 1,905 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 188,348 KB
最終ジャッジ日時 2024-09-13 01:16:05
合計ジャッジ時間 30,857 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,540 KB
testcase_01 AC 37 ms
52,748 KB
testcase_02 AC 36 ms
53,296 KB
testcase_03 AC 937 ms
154,700 KB
testcase_04 AC 904 ms
152,276 KB
testcase_05 AC 765 ms
135,348 KB
testcase_06 AC 1,080 ms
169,808 KB
testcase_07 AC 1,030 ms
162,472 KB
testcase_08 AC 1,148 ms
174,476 KB
testcase_09 AC 1,141 ms
176,508 KB
testcase_10 AC 615 ms
131,580 KB
testcase_11 AC 620 ms
131,500 KB
testcase_12 AC 937 ms
154,476 KB
testcase_13 AC 903 ms
153,372 KB
testcase_14 AC 1,245 ms
188,348 KB
testcase_15 AC 1,119 ms
174,684 KB
testcase_16 AC 963 ms
156,484 KB
testcase_17 AC 609 ms
125,984 KB
testcase_18 AC 691 ms
132,364 KB
testcase_19 AC 816 ms
144,868 KB
testcase_20 AC 868 ms
145,856 KB
testcase_21 AC 840 ms
147,216 KB
testcase_22 AC 773 ms
135,196 KB
testcase_23 AC 1,104 ms
170,568 KB
testcase_24 AC 776 ms
135,716 KB
testcase_25 AC 667 ms
132,448 KB
testcase_26 AC 665 ms
131,700 KB
testcase_27 AC 731 ms
133,916 KB
testcase_28 AC 1,216 ms
180,400 KB
testcase_29 AC 865 ms
146,348 KB
testcase_30 AC 1,143 ms
174,392 KB
testcase_31 AC 769 ms
136,180 KB
testcase_32 AC 781 ms
136,896 KB
testcase_33 AC 393 ms
117,204 KB
testcase_34 AC 402 ms
128,140 KB
testcase_35 AC 602 ms
148,820 KB
testcase_36 AC 648 ms
174,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


class SegTree:  # モノイドに対して適用可能、Nが2冪でなくても良い
    def __init__(self,N,seg_func,unit):
        self.N = 1 << (N-1).bit_length()
        self.func = seg_func
        self.unit = unit
        self.tree = [self.unit]*(2*self.N)

    def set_val(self,i,x):  # i番目(0-index)の値をxに変更
        i += self.N
        self.tree[i] = x
        i >>= 1
        while i:
            self.tree[i] = self.func(self.tree[i << 1],self.tree[i << 1 | 1])
            i >>= 1

    def fold(self,L,R):  # [L,R)の区間取得
        L += self.N
        R += self.N
        vL = self.unit
        vR = self.unit
        while L < R:
            if L & 1:
                vL = self.func(vL,self.tree[L])
                L += 1
            if R & 1:
                R -= 1
                vR = self.func(self.tree[R],vR)
            L >>= 1
            R >>= 1
        return self.func(vL,vR)


def seg_func(x,y):
    x0,x1 = x
    y0,y1 = y
    return ((x0+y0) % mod,(x1+y1) % mod)


N = I()
A = LI()
mod = 998244353

AA = sorted(list(set(A)))
d = {}
M = len(AA)
for i in range(M):
    d[AA[i]] = i

ST_left = SegTree(N,seg_func,(0,0))
X_left = []
for i in range(N):
    a = d[A[i]]
    ST_left.set_val(a,seg_func((A[i],1),ST_left.tree[a+ST_left.N]))
    if 1 <= i <= N-2:
        X_left.append(ST_left.fold(a+1,N))

ST_right = SegTree(N,seg_func,(0,0))
X_right = []
for i in range(N-1,-1,-1):
    a = d[A[i]]
    ST_right.set_val(a,seg_func((A[i],1),ST_right.tree[a+ST_right.N]))
    if 1 <= i <= N-2:
        X_right.append(ST_right.fold(0,a))

X_right.reverse()

ans = 0
for i in range(1,N-1):
    a = A[i]
    x,y = X_left[i-1]
    z,w = X_right[i-1]
    if y > 0 and w > 0:
        ans += a*(y*w)+w*x+y*z
        ans %= mod

print(ans)
0