結果

問題 No.1492 01文字列と転倒
ユーザー chineristACchineristAC
提出日時 2021-04-30 21:36:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,359 ms / 4,000 ms
コード長 2,041 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 279,680 KB
最終ジャッジ日時 2024-07-19 00:03:11
合計ジャッジ時間 13,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
56,192 KB
testcase_01 AC 46 ms
56,448 KB
testcase_02 AC 1,359 ms
278,144 KB
testcase_03 AC 1,250 ms
275,552 KB
testcase_04 AC 1,176 ms
278,724 KB
testcase_05 AC 1,005 ms
241,792 KB
testcase_06 AC 1,042 ms
254,464 KB
testcase_07 AC 1,151 ms
279,680 KB
testcase_08 AC 1,126 ms
278,272 KB
testcase_09 AC 50 ms
63,104 KB
testcase_10 AC 44 ms
56,448 KB
testcase_11 AC 46 ms
56,448 KB
testcase_12 AC 46 ms
56,320 KB
testcase_13 AC 44 ms
56,192 KB
testcase_14 AC 1,044 ms
254,240 KB
testcase_15 AC 66 ms
70,784 KB
testcase_16 AC 95 ms
77,952 KB
testcase_17 AC 1,002 ms
241,756 KB
testcase_18 AC 95 ms
77,524 KB
testcase_19 AC 62 ms
69,120 KB
testcase_20 AC 85 ms
77,676 KB
testcase_21 AC 838 ms
199,992 KB
testcase_22 AC 92 ms
77,916 KB
testcase_23 AC 81 ms
77,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree:
    def __init__(self, init_val, segfunc, ide_ele):
        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
        self.size = n
        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 += 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):
        if r==self.size:
            r = self.num

        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

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log

input = lambda :sys.stdin.buffer.readline()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

mod = 10**9 + 7

N,M = mi()
mod = M
dp = [[0 for k in range(N*(N+1)//2+1)] for j in range(N+1)]
dp[0][0] = 1

for n in range(2*N):
    ndp = [[0 for k in range(N*(N+1)//2+1)] for j in range(N+1)]
    for i in range(min(n+1,N+1)):
        j = n - i
        for k in range(N*(N+1)//2+1):
            if not dp[i][k]:
                continue
            if i!=N and k+j<=N*(N+1)//2:
                ndp[i+1][k+j] += dp[i][k]
                ndp[i+1][k+j] %= mod
            if j!=N and i>=j+1:
                ndp[i][k] += dp[i][k]
                ndp[i][k] %= mod

    dp = ndp

for inv in range(N*(N+1)//2+1):
    print(dp[N][inv])
for inv in range(N*(N+1)//2+1,N**2+1):
    print(0)
0