結果
問題 | No.1300 Sum of Inversions |
ユーザー | ayaoni |
提出日時 | 2020-11-27 22:37:11 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,108 ms / 2,000 ms |
コード長 | 2,494 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 82,152 KB |
実行使用メモリ | 188,840 KB |
最終ジャッジ日時 | 2024-07-26 18:58:12 |
合計ジャッジ時間 | 27,861 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
53,084 KB |
testcase_01 | AC | 34 ms
53,464 KB |
testcase_02 | AC | 34 ms
54,536 KB |
testcase_03 | AC | 812 ms
154,904 KB |
testcase_04 | AC | 802 ms
153,428 KB |
testcase_05 | AC | 657 ms
136,280 KB |
testcase_06 | AC | 933 ms
169,588 KB |
testcase_07 | AC | 907 ms
162,932 KB |
testcase_08 | AC | 1,040 ms
174,888 KB |
testcase_09 | AC | 1,084 ms
175,944 KB |
testcase_10 | AC | 568 ms
131,356 KB |
testcase_11 | AC | 567 ms
131,236 KB |
testcase_12 | AC | 840 ms
154,908 KB |
testcase_13 | AC | 821 ms
153,324 KB |
testcase_14 | AC | 1,108 ms
188,840 KB |
testcase_15 | AC | 989 ms
174,400 KB |
testcase_16 | AC | 854 ms
156,252 KB |
testcase_17 | AC | 543 ms
126,068 KB |
testcase_18 | AC | 606 ms
130,632 KB |
testcase_19 | AC | 736 ms
144,416 KB |
testcase_20 | AC | 782 ms
146,120 KB |
testcase_21 | AC | 765 ms
147,104 KB |
testcase_22 | AC | 682 ms
136,220 KB |
testcase_23 | AC | 975 ms
170,384 KB |
testcase_24 | AC | 676 ms
136,356 KB |
testcase_25 | AC | 589 ms
132,280 KB |
testcase_26 | AC | 599 ms
131,796 KB |
testcase_27 | AC | 664 ms
133,900 KB |
testcase_28 | AC | 1,068 ms
185,040 KB |
testcase_29 | AC | 763 ms
145,660 KB |
testcase_30 | AC | 1,009 ms
174,008 KB |
testcase_31 | AC | 669 ms
137,012 KB |
testcase_32 | AC | 711 ms
137,452 KB |
testcase_33 | AC | 364 ms
117,612 KB |
testcase_34 | AC | 393 ms
128,612 KB |
testcase_35 | AC | 574 ms
147,988 KB |
testcase_36 | AC | 604 ms
174,788 KB |
ソースコード
import sys sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) class SegTree: # モノイドに対して適用可能、Nが2冪でなくても良い def __init__(self,N,seg_func,unit): self.N = 1 << (N-1).bit_length() self.func = seg_func self.unit = unit self.tree = [self.unit]*(2*self.N) def build(self,init_value): # 初期値を[N,2N)に格納 for i in range(len(init_value)): self.tree[i+self.N] = init_value[i] for i in range(self.N-1,0,-1): self.tree[i] = self.func(self.tree[i << 1],self.tree[i << 1 | 1]) def set_val(self,i,x): # i番目(0-index)の値をxに変更 i += self.N self.tree[i] = x i >>= 1 while i: self.tree[i] = self.func(self.tree[i << 1],self.tree[i << 1 | 1]) i >>= 1 def fold(self,L,R): # [L,R)の区間取得 L += self.N R += self.N vL = self.unit vR = self.unit while L < R: if L & 1: vL = self.func(vL,self.tree[L]) L += 1 if R & 1: R -= 1 vR = self.func(self.tree[R],vR) L >>= 1 R >>= 1 return self.func(vL,vR) def seg_func(x,y): x0,x1 = x y0,y1 = y return ((x0+y0) % mod,(x1+y1) % mod) N = I() A = LI() mod = 998244353 AA = sorted(list(set(A))) d = {} M = len(AA) for i in range(M): d[AA[i]] = i ST_left = SegTree(N,seg_func,(0,0)) X_left = [] for i in range(N): a = d[A[i]] ST_left.set_val(a,seg_func((A[i],1),ST_left.tree[a+ST_left.N])) if 1 <= i <= N-2: X_left.append(ST_left.fold(a+1,N)) ST_right = SegTree(N,seg_func,(0,0)) X_right = [] for i in range(N-1,-1,-1): a = d[A[i]] ST_right.set_val(a,seg_func((A[i],1),ST_right.tree[a+ST_right.N])) if 1 <= i <= N-2: X_right.append(ST_right.fold(0,a)) X_right.reverse() ans = 0 for i in range(1,N-1): a = A[i] x,y = X_left[i-1] z,w = X_right[i-1] if y > 0 and w > 0: ans += a*(y*w)+w*x+y*z ans %= mod print(ans)