Created
February 8, 2026 04:56
-
-
Save maehrm/9f2bcaaf3ff8d609521ef2bff1a6a156 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class BIT: | |
| def __init__(self, n): | |
| self.n = n | |
| self.bit = [0] * (n + 1) | |
| def sum(self, a): | |
| res = 0 | |
| i = a - 1 | |
| while i >= 0: | |
| res += self.bit[i] | |
| i = (i & (i + 1)) - 1 | |
| return res | |
| def add(self, a, x): | |
| i = a | |
| while i < len(self.bit): | |
| self.bit[i] += x | |
| i |= i + 1 | |
| MOD = 998244353 | |
| N = int(input()) | |
| A = list(map(int, input().split())) | |
| # 座標圧縮を行う | |
| xs = sorted(set(A)) | |
| mp = {x: i for i, x in enumerate(xs)} | |
| A = [mp[x] for x in A] | |
| bit = BIT(max(A) + 1) | |
| inv2 = pow(2, MOD - 2, MOD) # 2 の逆元 | |
| ans = 0 | |
| for y in range(N): | |
| s = bit.sum(A[y] + 1) | |
| if y >= 1: | |
| ans = (ans + pow(2, y - 1, MOD) * s) % MOD | |
| bit.add(A[y], pow(inv2, y, MOD)) | |
| print(ans) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment