結果

問題 No.1300 Sum of Inversions
ユーザー ShirotsumeShirotsume
提出日時 2023-02-17 20:33:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,647 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 86,572 KB
実行使用メモリ 149,472 KB
最終ジャッジ日時 2023-09-26 17:43:40
合計ジャッジ時間 10,786 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
71,804 KB
testcase_01 AC 96 ms
71,288 KB
testcase_02 AC 96 ms
71,672 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,673 ms
120,092 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,378 ms
114,564 KB
testcase_11 AC 1,385 ms
114,776 KB
testcase_12 TLE -
testcase_13 AC 1,986 ms
131,892 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,343 ms
110,880 KB
testcase_18 AC 1,529 ms
115,800 KB
testcase_19 AC 1,814 ms
125,632 KB
testcase_20 AC 1,882 ms
125,880 KB
testcase_21 AC 1,861 ms
126,196 KB
testcase_22 AC 1,681 ms
120,368 KB
testcase_23 TLE -
testcase_24 AC 1,749 ms
120,744 KB
testcase_25 AC 1,500 ms
115,472 KB
testcase_26 AC 1,469 ms
114,964 KB
testcase_27 AC 1,603 ms
120,388 KB
testcase_28 TLE -
testcase_29 AC 1,838 ms
125,660 KB
testcase_30 TLE -
testcase_31 AC 1,665 ms
120,776 KB
testcase_32 AC 1,746 ms
120,856 KB
testcase_33 AC 956 ms
106,276 KB
testcase_34 AC 1,065 ms
110,780 KB
testcase_35 AC 1,522 ms
148,080 KB
testcase_36 AC 1,598 ms
149,244 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]]] % mod * a[i]
    ans %= mod

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

print(ans)
0