結果
問題 | No.1300 Sum of Inversions |
ユーザー | Shirotsume |
提出日時 | 2023-02-17 20:37:04 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,715 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 144,788 KB |
最終ジャッジ日時 | 2024-07-19 11:43:40 |
合計ジャッジ時間 | 31,000 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
55,528 KB |
testcase_01 | AC | 43 ms
54,272 KB |
testcase_02 | AC | 41 ms
54,656 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | AC | 1,839 ms
117,744 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | AC | 1,489 ms
113,280 KB |
testcase_11 | AC | 1,501 ms
113,408 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | AC | 1,406 ms
110,064 KB |
testcase_18 | AC | 1,627 ms
114,064 KB |
testcase_19 | AC | 1,867 ms
122,136 KB |
testcase_20 | AC | 1,999 ms
121,728 KB |
testcase_21 | AC | 1,947 ms
122,104 KB |
testcase_22 | AC | 1,826 ms
117,616 KB |
testcase_23 | TLE | - |
testcase_24 | AC | 1,845 ms
117,808 KB |
testcase_25 | AC | 1,576 ms
113,484 KB |
testcase_26 | AC | 1,600 ms
113,988 KB |
testcase_27 | AC | 1,733 ms
117,284 KB |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 1,900 ms
117,896 KB |
testcase_32 | AC | 1,924 ms
117,628 KB |
testcase_33 | AC | 1,119 ms
103,956 KB |
testcase_34 | AC | 1,245 ms
104,032 KB |
testcase_35 | AC | 1,941 ms
142,224 KB |
testcase_36 | AC | 1,969 ms
139,784 KB |
ソースコード
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] f2[d[a[i]]] %= mod c2[d[a[i]]] += 1 for i in range(n): f2[d[a[i]]] -= a[i] f2[d[a[i]]] %= mod 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] f1[d[a[i]]] %= mod c1[d[a[i]]] += 1 print(ans)