結果

問題 No.1300 Sum of Inversions
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-11-27 22:07:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 681 ms / 2,000 ms
コード長 1,342 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 155,128 KB
最終ジャッジ日時 2024-07-26 12:59:15
合計ジャッジ時間 18,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 503 ms
119,960 KB
testcase_04 AC 496 ms
132,736 KB
testcase_05 AC 422 ms
122,112 KB
testcase_06 AC 565 ms
125,840 KB
testcase_07 AC 546 ms
125,028 KB
testcase_08 AC 597 ms
128,228 KB
testcase_09 AC 582 ms
128,128 KB
testcase_10 AC 356 ms
120,320 KB
testcase_11 AC 367 ms
120,064 KB
testcase_12 AC 495 ms
132,736 KB
testcase_13 AC 476 ms
132,864 KB
testcase_14 AC 681 ms
155,128 KB
testcase_15 AC 595 ms
128,048 KB
testcase_16 AC 516 ms
120,228 KB
testcase_17 AC 341 ms
115,584 KB
testcase_18 AC 367 ms
117,504 KB
testcase_19 AC 444 ms
126,720 KB
testcase_20 AC 456 ms
127,104 KB
testcase_21 AC 454 ms
126,976 KB
testcase_22 AC 418 ms
121,816 KB
testcase_23 AC 560 ms
125,644 KB
testcase_24 AC 419 ms
121,472 KB
testcase_25 AC 366 ms
120,576 KB
testcase_26 AC 373 ms
120,832 KB
testcase_27 AC 411 ms
122,112 KB
testcase_28 AC 603 ms
132,952 KB
testcase_29 AC 445 ms
127,036 KB
testcase_30 AC 598 ms
128,668 KB
testcase_31 AC 416 ms
121,856 KB
testcase_32 AC 431 ms
122,240 KB
testcase_33 AC 275 ms
103,168 KB
testcase_34 AC 290 ms
100,088 KB
testcase_35 AC 374 ms
149,888 KB
testcase_36 AC 414 ms
154,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

組の個数なら割と簡単だが…
1個,2個の場合で別にBITをもつ

座圧する

BITでAの位置にAを足しておく、みたいなことをする
2本目のBITで、2つのAの和を入れておく


"""

import sys
from sys import stdin

def bitadd(a,w,bit): #aにwを加える(1-origin)
    a += 1
    x = a
    while x <= (len(bit)-1):
        bit[x] += w
        x += x & (-1 * x)
 
def bitsum(a,bit): #ind 1~aまでの和を求める
    a += 1
    ret = 0
    x = a
    while x > 0:
        ret += bit[x]
        x -= x & (-1 * x)
    return ret

N = int(stdin.readline())
A = list(map(int,stdin.readline().split()))

dic = {}
lis = []
for i in A:
    if i not in dic:
        dic[i] = 0
        lis.append(i)
lis.sort()
for i in range(len(lis)):
    dic[lis[i]] = i+1

AS = [0] * (len(lis) + 2)
AK = [0] * (len(lis) + 2)

BS = [0] * (len(lis) + 2)
BK = [0] * (len(lis) + 2)

mod = 998244353
A.reverse()
ans = 0

for i in range(N):

    da = dic[A[i]]
    #答えの更新
    ans += bitsum(da-1,BS) + bitsum(da-1,BK) * A[i]
    ans %= mod

    #BSの更新
    tmp = bitsum(da-1 ,AS) + bitsum(da-1, AK) * A[i]
    bitadd(da,tmp % mod,BS)

    #BKの更新
    tmp = bitsum(da-1, AK)
    bitadd(da,tmp % mod,BK)

    #ASの更新
    bitadd(da,A[i],AS)

    #AKの更新
    bitadd(da,1,AK)

print (ans % mod)
0