結果

問題 No.2164 Equal Balls
ユーザー mkawa2mkawa2
提出日時 2022-12-19 18:33:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 5,847 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 427,464 KB
最終ジャッジ日時 2024-11-18 01:11:00
合計ジャッジ時間 84,542 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
359,776 KB
testcase_01 AC 48 ms
371,148 KB
testcase_02 AC 50 ms
357,172 KB
testcase_03 AC 46 ms
353,396 KB
testcase_04 AC 44 ms
359,504 KB
testcase_05 AC 47 ms
366,092 KB
testcase_06 AC 44 ms
358,540 KB
testcase_07 AC 45 ms
354,344 KB
testcase_08 AC 378 ms
373,724 KB
testcase_09 AC 428 ms
396,220 KB
testcase_10 AC 129 ms
79,584 KB
testcase_11 AC 1,197 ms
181,680 KB
testcase_12 AC 372 ms
94,904 KB
testcase_13 AC 222 ms
83,188 KB
testcase_14 AC 294 ms
89,048 KB
testcase_15 AC 1,077 ms
170,948 KB
testcase_16 AC 390 ms
98,556 KB
testcase_17 AC 104 ms
78,844 KB
testcase_18 AC 533 ms
108,788 KB
testcase_19 AC 1,809 ms
277,680 KB
testcase_20 AC 460 ms
103,668 KB
testcase_21 AC 96 ms
78,848 KB
testcase_22 AC 93 ms
78,976 KB
testcase_23 AC 137 ms
115,072 KB
testcase_24 AC 124 ms
94,080 KB
testcase_25 AC 122 ms
111,104 KB
testcase_26 AC 113 ms
79,104 KB
testcase_27 AC 131 ms
99,328 KB
testcase_28 AC 135 ms
99,712 KB
testcase_29 AC 97 ms
86,656 KB
testcase_30 AC 130 ms
99,584 KB
testcase_31 AC 145 ms
121,856 KB
testcase_32 AC 140 ms
102,784 KB
testcase_33 AC 109 ms
99,584 KB
testcase_34 AC 131 ms
110,080 KB
testcase_35 AC 79 ms
80,256 KB
testcase_36 AC 179 ms
128,256 KB
testcase_37 AC 153 ms
134,272 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 1,186 ms
135,168 KB
testcase_50 AC 1,223 ms
134,912 KB
testcase_51 AC 1,214 ms
135,040 KB
testcase_52 AC 1,225 ms
135,168 KB
testcase_53 AC 1,229 ms
427,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

IMAG = 911660635
IIMAG = 86583718
rate2 = (
    0, 911660635, 509520358, 369330050, 332049552, 983190778, 123842337, 238493703, 975955924, 603855026, 856644456,
    131300601, 842657263, 730768835, 942482514, 806263778, 151565301, 510815449, 503497456, 743006876, 741047443,
    56250497,
    867605899, 0)
irate2 = (0, 86583718, 372528824, 373294451, 645684063, 112220581, 692852209, 155456985, 797128860, 90816748, 860285882,
          927414960, 354738543, 109331171, 293255632, 535113200, 308540755, 121186627, 608385704, 438932459, 359477183,
          824071951, 103369235, 0)
rate3 = (
    0, 372528824, 337190230, 454590761, 816400692, 578227951, 180142363, 83780245, 6597683, 70046822, 623238099,
    183021267,
    402682409, 631680428, 344509872, 689220186, 365017329, 774342554, 729444058, 102986190, 128751033, 395565204, 0)
irate3 = (0, 509520358, 929031873, 170256584, 839780419, 282974284, 395914482, 444904435, 72135471, 638914820, 66769500,
          771127074, 985925487, 262319669, 262341272, 625870173, 768022760, 859816005, 914661783, 430819711, 272774365,
          530924681, 0)

def butterfly(a):
    n = len(a)
    h = (n-1).bit_length()
    le = 0
    while le < h:
        if h-le == 1:
            p = 1 << (h-le-1)
            rot = 1
            for s in range(1 << le):
                offset = s << (h-le)
                for i in range(p):
                    l = a[i+offset]
                    r = a[i+offset+p]*rot
                    a[i+offset] = (l+r)%md
                    a[i+offset+p] = (l-r)%md
                rot *= rate2[(~s & -~s).bit_length()]
                rot %= md
            le += 1
        else:
            p = 1 << (h-le-2)
            rot = 1
            for s in range(1 << le):
                rot2 = rot*rot%md
                rot3 = rot2*rot%md
                offset = s << (h-le)
                for i in range(p):
                    a0 = a[i+offset]
                    a1 = a[i+offset+p]*rot
                    a2 = a[i+offset+p*2]*rot2
                    a3 = a[i+offset+p*3]*rot3
                    a1na3imag = (a1-a3)%md*IMAG
                    a[i+offset] = (a0+a2+a1+a3)%md
                    a[i+offset+p] = (a0+a2-a1-a3)%md
                    a[i+offset+p*2] = (a0-a2+a1na3imag)%md
                    a[i+offset+p*3] = (a0-a2-a1na3imag)%md
                rot *= rate3[(~s & -~s).bit_length()]
                rot %= md
            le += 2

def butterfly_inv(a):
    n = len(a)
    h = (n-1).bit_length()
    le = h
    while le:
        if le == 1:
            p = 1 << (h-le)
            irot = 1
            for s in range(1 << (le-1)):
                offset = s << (h-le+1)
                for i in range(p):
                    l = a[i+offset]
                    r = a[i+offset+p]
                    a[i+offset] = (l+r)%md
                    a[i+offset+p] = (l-r)*irot%md
                irot *= irate2[(~s & -~s).bit_length()]
                irot %= md
            le -= 1
        else:
            p = 1 << (h-le)
            irot = 1
            for s in range(1 << (le-2)):
                irot2 = irot*irot%md
                irot3 = irot2*irot%md
                offset = s << (h-le+2)
                for i in range(p):
                    a0 = a[i+offset]
                    a1 = a[i+offset+p]
                    a2 = a[i+offset+p*2]
                    a3 = a[i+offset+p*3]
                    a2na3iimag = (a2-a3)*IIMAG%md
                    a[i+offset] = (a0+a1+a2+a3)%md
                    a[i+offset+p] = (a0-a1+a2na3iimag)*irot%md
                    a[i+offset+p*2] = (a0+a1-a2-a3)*irot2%md
                    a[i+offset+p*3] = (a0-a1-a2na3iimag)*irot3%md
                irot *= irate3[(~s & -~s).bit_length()]
                irot %= md
            le -= 2

def multiply(s, t):
    n = len(s)
    m = len(t)
    if min(n, m) <= 60:
        a = [0]*(n+m-1)
        for i in range(n):
            if i%8 == 0:
                for j in range(m):
                    a[i+j] += s[i]*t[j]
                    a[i+j] %= md
            else:
                for j in range(m):
                    a[i+j] += s[i]*t[j]
        return [x%md for x in a]
    a = s.copy()
    b = t.copy()
    z = 1 << (n+m-2).bit_length()
    a += [0]*(z-n)
    b += [0]*(z-m)
    butterfly(a)
    butterfly(b)
    for i in range(z):
        a[i] *= b[i]
        a[i] %= md
    butterfly_inv(a)
    a = a[:n+m-1]
    iz = pow(z, md-2, md)
    return [v*iz%md for v in a]

from collections import defaultdict

cc = []
for i in range(601):
    cc.append([1])
    for j in range(1, i):
        cc[i].append((cc[i-1][j-1]+cc[i-1][j])%md)
    cc[i].append(1)
# p2D(cc)

n, m = LI()
aa = LI()
bb = LI()
lim = 300*150

ans = 1
sc = [1]
mid = 0
for si in range(m):
    dp = [1]*601
    l, r = -300, 300
    for j in range(si, n, m):
        a, b = aa[j], bb[j]
        L = max(l, -a)
        R = min(r, b)
        d1, d2 = L-l, L+a
        ndp = []
        for i in range(R-L+1):
            ndp.append(dp[i+d1]*cc[a+b][i+d2]%md)
        dp = ndp
        l, r = L, R

    mid -= l
    sc = multiply(sc, dp)[:lim*2+1]
# pDB(sc)

print(sc[mid])
0