結果

問題 No.1300 Sum of Inversions
ユーザー ShirotsumeShirotsume
提出日時 2023-02-17 20:32:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,641 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 86,948 KB
実行使用メモリ 149,352 KB
最終ジャッジ日時 2023-09-26 17:42:18
合計ジャッジ時間 69,262 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
71,452 KB
testcase_01 AC 97 ms
71,540 KB
testcase_02 AC 95 ms
71,276 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,681 ms
120,268 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,420 ms
114,548 KB
testcase_11 AC 1,379 ms
114,348 KB
testcase_12 TLE -
testcase_13 AC 1,987 ms
131,296 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,354 ms
110,880 KB
testcase_18 AC 1,549 ms
115,664 KB
testcase_19 AC 1,834 ms
125,368 KB
testcase_20 AC 1,859 ms
125,820 KB
testcase_21 AC 1,857 ms
125,884 KB
testcase_22 AC 1,681 ms
120,512 KB
testcase_23 TLE -
testcase_24 AC 1,734 ms
120,584 KB
testcase_25 AC 1,503 ms
115,272 KB
testcase_26 AC 1,481 ms
114,896 KB
testcase_27 AC 1,650 ms
119,812 KB
testcase_28 TLE -
testcase_29 AC 1,825 ms
125,372 KB
testcase_30 TLE -
testcase_31 AC 1,728 ms
120,436 KB
testcase_32 AC 1,768 ms
120,816 KB
testcase_33 AC 979 ms
106,096 KB
testcase_34 AC 989 ms
110,332 KB
testcase_35 AC 1,572 ms
148,020 KB
testcase_36 AC 1,687 ms
149,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
class fenwick_tree():
    n=1
    data=[0 for i in range(n)]
    def __init__(self,N):
        self.n=N
        self.data=[0 for i in range(N)]

    def add(self,p,x):
        assert 0<=p<self.n,"0<=p<n,p={0},n={1}".format(p,self.n)

        p+=1
        while(p<=self.n):
            self.data[p-1]+=x
            p += p&(-p)
    def sum(self,l,r):
        assert (0<=l and l<=r and r<=self.n),"0<=l<=r<=n,l={0},r={1},n={2}".format(l,r,self.n)
        return self.sum0(r)-self.sum0(l)
    def sum0(self,r):
        s=0
        while(r>0):
            s+=self.data[r-1]
            r-=r&-r
        return s

    def __getitem__(self, p):
        if isinstance(p, int):
            return self.sum(p, p + 1)
        else:
            return self.sum(p.start, p.stop)

    def __setitem__(self, p, x):
        return self.add(p, x - self[p])


n = ii()

a = li()
sa = list(set(a))
A = [(sa[i], i) for i in range(len(sa))]

A.sort()
d = {}

sn = len(A)
for i in range(sn):
    d[A[i][0]] = i

    
f1 = fenwick_tree(sn)
c1 = fenwick_tree(sn)
f2 = fenwick_tree(sn)
c2 = fenwick_tree(sn)
ans = 0
for i in range(n):
    f2[d[a[i]]] += a[i]
    c2[d[a[i]]] += 1
for i in range(n):
    f2[d[a[i]]] -= a[i]
    c2[d[a[i]]] -= 1

    ans += f1[d[a[i]] + 1: sn] * c2[0:d[a[i]]] + f2[0:d[a[i]]] * c1[d[a[i]] + 1: sn] + c1[d[a[i]] + 1: sn] * c2[0:d[a[i]]] * a[i]
    ans %= mod

    f1[d[a[i]]] += a[i]
    c1[d[a[i]]] += 1

print(ans)
0