結果

問題 No.2530 Yellow Cards
ユーザー timitimi
提出日時 2024-02-13 15:23:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,674 ms / 2,000 ms
コード長 1,192 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 277,276 KB
最終ジャッジ日時 2024-09-28 18:24:20
合計ジャッジ時間 16,879 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,364 KB
testcase_01 AC 41 ms
54,552 KB
testcase_02 AC 59 ms
71,232 KB
testcase_03 AC 63 ms
73,552 KB
testcase_04 AC 40 ms
54,244 KB
testcase_05 AC 57 ms
69,932 KB
testcase_06 AC 42 ms
61,332 KB
testcase_07 AC 1,674 ms
277,096 KB
testcase_08 AC 1,493 ms
276,632 KB
testcase_09 AC 1,536 ms
277,276 KB
testcase_10 AC 1,484 ms
277,220 KB
testcase_11 AC 1,258 ms
276,132 KB
testcase_12 AC 1,553 ms
276,888 KB
testcase_13 AC 1,551 ms
276,764 KB
testcase_14 AC 1,350 ms
217,176 KB
testcase_15 AC 861 ms
166,028 KB
testcase_16 AC 772 ms
167,936 KB
testcase_17 AC 1,397 ms
229,908 KB
testcase_18 AC 330 ms
135,316 KB
testcase_19 AC 123 ms
90,888 KB
testcase_20 AC 305 ms
97,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
N,K=map(int, input().split())
def xgcd(a, b):
    x0, y0, x1, y1 = 1, 0, 0, 1
    while b != 0:
        q, a, b = a // b, b, a % b
        x0, x1 = x1, x0 - q * x1
        y0, y1 = y1, y0 - q * y1
    return a, x0, y0

def modinv(a, m):
    g, x, y = xgcd(a, m)
    if g != 1:
        raise Exception('modular inverse does not exist')
    else:
        return x % m
        
def f(x,y):
  e=N+1
  return x*e+y
def ff(z):
  e=N+1
  x,y=z//e,z//e
  return x,y
  
gt=modinv(N,mod)
from collections import deque
d=deque()
d.append((0,0))
dp=[0]*(N+1)*(K//2+10)
V=[-1]*(N+1)*(K//2+10)
dp[0]=1;V[0]=0
for i in range(K):
  nd=deque();DD={}
  while d:
    r,y=d.popleft()
    p=N-y
    c=dp[f(r,y)]
    if y!=0:
      nex=f(r+1,y-1)
      a=(y*gt*c)%mod
      if V[nex]==-1:
        V[nex]=i+1
        nd.append((r+1,y-1))
      dp[nex]+=a
      dp[nex]%=mod 
    if p!=0:
      a=(p*gt*c)%mod
      nex=f(r,y+1)
      if V[nex]==-1:
        V[nex]=i+1
        nd.append((r,y+1))
      dp[nex]+=a
      dp[nex]%=mod
  d=nd 
ans=0
for r in range(K//2+1):
  for y in range(N+1):
    cc=f(r,y)
    if V[cc]==K:
      p=N-y
      c=r+y+p
      ans+=c*dp[cc]
      ans%=mod
print(ans)
    

0