結果

問題 No.1300 Sum of Inversions
ユーザー shobonvipshobonvip
提出日時 2022-07-29 21:07:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 796 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 178,016 KB
最終ジャッジ日時 2024-07-19 12:13:47
合計ジャッジ時間 21,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,064 KB
testcase_01 AC 38 ms
53,416 KB
testcase_02 AC 40 ms
52,152 KB
testcase_03 AC 659 ms
125,280 KB
testcase_04 AC 636 ms
125,092 KB
testcase_05 AC 501 ms
117,316 KB
testcase_06 AC 707 ms
130,648 KB
testcase_07 AC 677 ms
130,688 KB
testcase_08 AC 757 ms
148,800 KB
testcase_09 AC 724 ms
149,104 KB
testcase_10 AC 428 ms
123,044 KB
testcase_11 AC 411 ms
121,736 KB
testcase_12 AC 627 ms
125,448 KB
testcase_13 AC 606 ms
125,548 KB
testcase_14 AC 796 ms
178,016 KB
testcase_15 AC 709 ms
148,704 KB
testcase_16 AC 631 ms
125,156 KB
testcase_17 AC 396 ms
120,748 KB
testcase_18 AC 461 ms
113,780 KB
testcase_19 AC 573 ms
121,900 KB
testcase_20 AC 582 ms
121,528 KB
testcase_21 AC 559 ms
121,740 KB
testcase_22 AC 502 ms
117,376 KB
testcase_23 AC 738 ms
130,632 KB
testcase_24 AC 517 ms
117,600 KB
testcase_25 AC 438 ms
115,096 KB
testcase_26 AC 436 ms
116,216 KB
testcase_27 AC 480 ms
117,604 KB
testcase_28 AC 738 ms
155,176 KB
testcase_29 AC 540 ms
121,792 KB
testcase_30 AC 687 ms
148,912 KB
testcase_31 AC 480 ms
117,456 KB
testcase_32 AC 499 ms
118,032 KB
testcase_33 AC 362 ms
109,556 KB
testcase_34 AC 374 ms
107,272 KB
testcase_35 AC 459 ms
140,136 KB
testcase_36 AC 460 ms
176,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

class BIT:
	def query(self, m):
		res = 0
		while m > 0:
			res = (res + self.bit[m]) % mod
			m -= m&(-m)
		return res
	
	def sum(self, a, b):
		return (self.query(b)-self.query(a)) % mod
	
	def add(self, m, x):
		m += 1
		bitlen = len(self.bit)
		while m <= bitlen-1:
			self.bit[m] = (self.bit[m] + x) % mod
			m += m&(-m)
		return
		
	def __init__(self, a):
		self.bitlen = a
		self.bit = [0]*a

n = int(input())
a = list(map(int,input().split()))

def compress(arr):
	*XS, = set(arr)
	XS.sort()
	return {cmp_e: cmp_i for cmp_i, cmp_e in enumerate(XS)}

a_c = compress(a)
bitv = BIT(n+1)
bit1 = BIT(n+1)
bitw = BIT(n+1)
bit2 = BIT(n+1)

ans = 0
for i in range(n):
	targ = a_c[a[i]]
	ans = (ans+bit2.sum(targ+1,n)+a[i]*bitw.sum(targ+1,n))%mod
	bit2.add(targ,(bit1.sum(targ+1,n)+a[i]*bitv.sum(targ+1,n))%mod)
	bitw.add(targ,bitv.sum(targ+1,n))
	bit1.add(targ,a[i])
	bitv.add(targ,1)

print(ans)
0