結果

問題 No.1967 Sugoroku Optimization
ユーザー rlangevinrlangevin
提出日時 2023-04-27 20:38:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 820 ms / 2,000 ms
コード長 1,448 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 83,680 KB
最終ジャッジ日時 2024-11-17 01:59:45
合計ジャッジ時間 8,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 795 ms
83,180 KB
testcase_04 AC 66 ms
67,456 KB
testcase_05 AC 723 ms
82,664 KB
testcase_06 AC 776 ms
82,920 KB
testcase_07 AC 88 ms
76,544 KB
testcase_08 AC 578 ms
80,952 KB
testcase_09 AC 462 ms
79,844 KB
testcase_10 AC 266 ms
77,108 KB
testcase_11 AC 115 ms
76,832 KB
testcase_12 AC 536 ms
80,880 KB
testcase_13 AC 326 ms
78,748 KB
testcase_14 AC 102 ms
76,416 KB
testcase_15 AC 103 ms
76,032 KB
testcase_16 AC 114 ms
76,672 KB
testcase_17 AC 107 ms
75,776 KB
testcase_18 AC 66 ms
67,328 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 799 ms
83,680 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 820 ms
83,620 KB
testcase_23 AC 544 ms
81,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Fenwick_Tree:
    def __init__(self, n):
        self._n = n
        self.data = [0] * n

    def add(self, p, x):
        assert 0 <= p < self._n
        p += 1
        while p <= self._n:
            self.data[p - 1] += x
            self.data[p - 1] %= mod
            p += p & -p

    def sum(self, l, r):
        assert 0 <= l <= r <= self._n
        return self._sum(r) - self._sum(l)

    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            s %= mod
            r -= r & -r
        return s % mod
    
    def get(self, k):
        k += 1
        x, r = 0, 1
        while r < self._n:
            r <<= 1
        len = r
        while len:
            if x + len - 1 < self._n:
                if self.data[x + len - 1] < k:
                    k -= self.data[x + len - 1]
                    x += len
            len >>= 1
        return x
    
    
N, K = map(int, input().split())
inv = [1] * (N + 1)
mod = 998244353
for i in range(1, N + 1):
    inv[i] = pow(i, mod - 2, mod)

# pre = [0] * (N + 1)
# pre[0] = 1
pre = Fenwick_Tree(N + 1)
ans = 0
pre.add(0, 1)
pre.add(1, -1)
for k in range(K):
    now = Fenwick_Tree(N + 1)
    for i in range(N):
        # for j in range(i + 1, N + 1):
        #     now[j] += inv[N - i] * pre[i]
        v = inv[N - i] * pre.sum(0, i + 1) % mod
        now.add(i + 1, v)
        ans += v
        ans %= mod
    pre, now = now, pre
    
print(ans) 
0