結果

問題 No.2327 Inversion Sum
ユーザー sepa38sepa38
提出日時 2023-05-09 18:35:48
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,583 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,620 KB
最終ジャッジ日時 2024-05-04 18:08:33
合計ジャッジ時間 5,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 90 ms
84,224 KB
testcase_12 AC 84 ms
82,560 KB
testcase_13 AC 67 ms
75,008 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 39 ms
52,352 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 40 ms
52,352 KB
testcase_26 WA -
testcase_27 AC 37 ms
51,968 KB
testcase_28 WA -
testcase_29 AC 38 ms
52,224 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

class segt:
  def __init__(self, n, ele, calc):
    self.num = 2 ** (n - 1).bit_length()
    self.el = ele
    self.data = [ele] * (2 * self.num)
    self.calc = calc

  def update(self, idx, x):
    idx += self.num - 1
    self.data[idx] = x
    while idx > 0:
      idx = (idx - 1) // 2
      self.data[idx] = self.calc(self.data[2*idx+1], self.data[2*idx+2])
  
  def renew(self, idx, x):
    self.update(idx, self.calc(self.get(idx), x))

  def prod(self, left, right):
    l = left + self.num
    r = right + self.num
    res = self.el
    while l < r:
      if l % 2:
        res = self.calc(res, self.data[l-1])
        l += 1
      if r % 2:
        r -= 1
        res = self.calc(res, self.data[r-1])
      l //= 2
      r //= 2
    return res

  def get(self, idx):
    return self.data[idx+self.num-1]

def add(x, y):
  return x + y


n, m = map(int, input().split())
mod = 998244353
fac = [1]
for i in range(n):
  fac.append(fac[i]*(i+1)%mod)
idx = [-1] * n
st1 = segt(n, 0, add)
for _ in range(m):
  p, k = map(lambda x: int(x)-1, input().split())
  st1.update(k, 1)
  idx[p] = k
st2 = segt(n, 0, add)
st3 = segt(n, 0, add)
s = 0
ans = 0
for i in range(n):
  if idx[i] == -1:
    ans += s * fac[n-m-1] % mod
    cnd = i - st2.prod(0, i)
    ans += cnd * ((n - m) * (n - m - 1) // 2) * fac[n-m-2] % mod
  else:
    st2.update(i, 1)
    st3.update(idx[i], 1)
    ans += st1.prod(idx[i]+1, n) * fac[n-m] % mod
    cnd = i - st2.prod(0, i)
    ans += cnd * ((n - idx[i]) - st1.prod(idx[i], n)) * fac[n-m-1] % mod
    s += idx[i] - st3.prod(0, idx[i])
  ans %= mod
print(ans)
0