結果

問題 No.2250 Split Permutation
ユーザー convexineqconvexineq
提出日時 2023-06-29 15:14:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 375 ms / 3,000 ms
コード長 1,694 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 115,616 KB
最終ジャッジ日時 2024-07-06 06:05:37
合計ジャッジ時間 7,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,744 KB
testcase_01 AC 40 ms
53,472 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 38 ms
53,232 KB
testcase_04 AC 39 ms
53,276 KB
testcase_05 AC 38 ms
53,232 KB
testcase_06 AC 38 ms
52,392 KB
testcase_07 AC 42 ms
53,540 KB
testcase_08 AC 37 ms
53,208 KB
testcase_09 AC 38 ms
54,004 KB
testcase_10 AC 39 ms
53,936 KB
testcase_11 AC 37 ms
53,420 KB
testcase_12 AC 38 ms
53,476 KB
testcase_13 AC 39 ms
52,964 KB
testcase_14 AC 38 ms
52,688 KB
testcase_15 AC 37 ms
53,272 KB
testcase_16 AC 39 ms
52,832 KB
testcase_17 AC 39 ms
52,864 KB
testcase_18 AC 363 ms
114,108 KB
testcase_19 AC 316 ms
108,260 KB
testcase_20 AC 280 ms
115,616 KB
testcase_21 AC 192 ms
98,996 KB
testcase_22 AC 268 ms
110,520 KB
testcase_23 AC 105 ms
82,612 KB
testcase_24 AC 266 ms
111,036 KB
testcase_25 AC 371 ms
113,580 KB
testcase_26 AC 155 ms
92,632 KB
testcase_27 AC 92 ms
79,812 KB
testcase_28 AC 113 ms
84,468 KB
testcase_29 AC 354 ms
113,844 KB
testcase_30 AC 121 ms
85,476 KB
testcase_31 AC 86 ms
77,492 KB
testcase_32 AC 131 ms
86,864 KB
testcase_33 AC 217 ms
102,676 KB
testcase_34 AC 107 ms
81,928 KB
testcase_35 AC 164 ms
93,448 KB
testcase_36 AC 129 ms
86,432 KB
testcase_37 AC 375 ms
113,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT: #0-indexed
    __slots__ = ["size", "tree","depth","n0"]
    def __init__(self, n):
        self.size = n
        self.tree = [0]*(n+1)
        self.depth = n.bit_length()
        self.n0 = 1<<self.depth

    def get_sum(self, i): #a_0 + ... + a_{i} #閉区間
        s = 0; i += 1
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def range_sum(self,l,r): #a_l + ... + a_r 閉区間
        return self.get_sum(r) - self.get_sum(l-1) 

    def range_sum_larger(self,l): #a_l + ... (端まで)
        return self.get_sum(self.size-1) - (self.get_sum(l-1) if l else 0)
    
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

    def bisect_left(self,w):
        #和が w 以上になる最小の index
        #w が存在しない場合 self.size を返す
        if w <= 0: return 0
        x,k = 0,self.n0
        for _ in range(self.depth):
            k >>= 1
            if x+k <= self.size and self.tree[x+k] < w:
                w -= self.tree[x+k]
                x += k
        return x

import sys
readline = sys.stdin.readline
 
#n = int(readline())
#*a, = map(int,readline().split())
# b = [list(map(int,readline().split())) for _ in range()]
 
n = int(readline())
*p, = map(int,readline().split())


b1 = BIT(n+1)
b2 = BIT(n+2)
ans = 0
MOD = 998244353
pow2 = [1]
inv2 = (MOD+1)//2
for i in range(n+2):
    pow2.append(pow2[-1]*2%MOD)

for i in range(n):
    s = b1.range_sum_larger(p[i])
    t = b2.range_sum_larger(p[i])
    ans += pow2[n-1]*s
    ans -= pow2[n-1-i]*t
    ans %= MOD
    b1.add(p[i],1)
    b2.add(p[i],pow2[i])

print(ans)




0