結果

問題 No.2616 中央番目の中央値
ユーザー timitimi
提出日時 2024-02-06 16:40:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 775 ms / 2,000 ms
コード長 2,478 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 255,884 KB
最終ジャッジ日時 2024-09-28 12:06:51
合計ジャッジ時間 19,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
251,532 KB
testcase_01 AC 222 ms
251,472 KB
testcase_02 AC 217 ms
252,184 KB
testcase_03 AC 205 ms
251,944 KB
testcase_04 AC 204 ms
251,732 KB
testcase_05 AC 207 ms
251,444 KB
testcase_06 AC 211 ms
252,000 KB
testcase_07 AC 210 ms
252,148 KB
testcase_08 AC 206 ms
251,560 KB
testcase_09 AC 206 ms
251,504 KB
testcase_10 AC 212 ms
251,636 KB
testcase_11 AC 214 ms
251,952 KB
testcase_12 AC 221 ms
251,740 KB
testcase_13 AC 263 ms
252,060 KB
testcase_14 AC 245 ms
255,884 KB
testcase_15 AC 252 ms
251,928 KB
testcase_16 AC 262 ms
255,620 KB
testcase_17 AC 276 ms
255,520 KB
testcase_18 AC 298 ms
251,648 KB
testcase_19 AC 383 ms
251,808 KB
testcase_20 AC 390 ms
251,272 KB
testcase_21 AC 561 ms
251,024 KB
testcase_22 AC 765 ms
249,888 KB
testcase_23 AC 765 ms
250,296 KB
testcase_24 AC 525 ms
250,324 KB
testcase_25 AC 525 ms
250,632 KB
testcase_26 AC 740 ms
250,016 KB
testcase_27 AC 734 ms
250,024 KB
testcase_28 AC 748 ms
250,292 KB
testcase_29 AC 753 ms
249,956 KB
testcase_30 AC 764 ms
250,296 KB
testcase_31 AC 713 ms
250,292 KB
testcase_32 AC 728 ms
249,960 KB
testcase_33 AC 722 ms
250,592 KB
testcase_34 AC 737 ms
250,020 KB
testcase_35 AC 754 ms
250,272 KB
testcase_36 AC 775 ms
250,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))

#####segfunc#####
def segfunc(x, y):
    return x+y
#################

#####ide_ele#####
ide_ele =0
#################

class SegTree:
    """
    init(init_val, ide_ele): 配列init_valで初期化 O(N)
    update(k, x): k番目の値をxに更新 O(logN)
    query(l, r): 区間[l, r)をsegfuncしたものを返す O(logN)
    """
    def __init__(self, init_val, segfunc, ide_ele):
        """
        init_val: 配列の初期値
        segfunc: 区間にしたい操作
        ide_ele: 単位元
        n: 要素数
        num: n以上の最小の2のべき乗
        tree: セグメント木(1-index)
        """
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        # 配列の値を葉にセット
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        # 構築していく
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        """
        k番目の値をxに更新
        k: index(0-index)
        x: update value
        """
        k += self.num
        self.tree[k] = x
        while k > 1:
            self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
            k >>= 1

    def query(self, l, r):
        """
        [l, r)のsegfuncしたものを得る
        l: index(0-index)
        r: index(0-index)
        """
        res = self.ide_ele

        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                res = self.segfunc(res, self.tree[r - 1])
            l >>= 1
            r >>= 1
        return res

mod=998244353;n=10**6+100
inv_t=[0]+[1]
for i in range(2,n):
  inv_t+=[inv_t[mod%i]*(mod-int(mod/i))%mod]

kai=[1,1]
rev_kai=[1,inv_t[1]]
for i in range(2,n):
  kai.append(kai[-1]*i%mod)
  rev_kai.append(rev_kai[-1]*inv_t[i]%mod)

def cmb(n,r):
  return kai[n]*rev_kai[r]*rev_kai[n-r]%mod

LL=[0]*N;RR=[1]*N
L=SegTree(LL, segfunc, ide_ele)
R=SegTree(RR, segfunc, ide_ele)
ll,rr=0,N;ans=0
for a in A:
  a-=1;rr-=1
  R.update(a,0)
  l,r=L.query(0,a),R.query(0,a)
  aa,bb,cc,dd=l,ll-l,r,rr-r
  ll+=1
  ans+=cmb(aa+dd,aa)*cmb(bb+cc,bb)
  ans%=mod
  L.update(a,1)
print(ans)
0