結果

問題 No.2832 Nana's Fickle Adventure
ユーザー ねしんねしん
提出日時 2024-06-09 10:38:05
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,143 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 848,428 KB
最終ジャッジ日時 2024-08-02 13:20:11
合計ジャッジ時間 11,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
77,220 KB
testcase_01 AC 717 ms
84,008 KB
testcase_02 AC 144 ms
77,304 KB
testcase_03 AC 1,212 ms
86,028 KB
testcase_04 AC 611 ms
81,364 KB
testcase_05 AC 541 ms
80,824 KB
testcase_06 AC 92 ms
76,764 KB
testcase_07 AC 86 ms
77,108 KB
testcase_08 AC 549 ms
80,576 KB
testcase_09 AC 393 ms
79,704 KB
testcase_10 AC 646 ms
80,984 KB
testcase_11 AC 737 ms
81,504 KB
testcase_12 AC 1,224 ms
85,676 KB
testcase_13 AC 174 ms
77,764 KB
testcase_14 AC 83 ms
76,828 KB
testcase_15 AC 34 ms
52,272 KB
testcase_16 AC 34 ms
53,180 KB
testcase_17 AC 35 ms
52,884 KB
testcase_18 MLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X=list(map(int,input().split()))
path=[]
for i in range(10):
    path.append([0]*10)
for i in range(M):
    u,v=list(map(int,input().split()))
    u-=1
    v-=1
    if u==v:
      path[u][v]+=1
    else:
      path[u][v]+=1
      path[v][u]+=1
MOD=998244353

dp=[]
for i in range(X+1):
	dp.append([0]*((N+1)*N))
dp[0][N**2]=1
for i in range(X):
	for j in range((N+1)*N):
	  if dp[i][j]==0:
	    continue
	  prev=j//N
	  now=j%N
	  if prev!=N:
	    if path[prev][now]==0:
	      continue
	    B=sum(path[now])-1
	    if B==0:
	      dp[i+1][N**2+now]=(dp[i+1][N**2+now]+dp[i][j])%MOD
	      continue
	    else:
	      Binv=pow(B,MOD-2,MOD)
	      for k in range(N):
	        dp[i+1][now*N+k]=(dp[i+1][now*N+k]+dp[i][j]*Binv*(path[now][k]-1*(prev==k)))%MOD
	  else:
	    B=sum(path[now])
	    if B==0:
	      dp[i+1][N**2+now]=(dp[i+1][N**2+now]+dp[i][j])%MOD
	      continue
	    else:
	      Binv=pow(B,MOD-2,MOD)
	      for k in range(N):
	        dp[i+1][now*N+k]=(dp[i+1][now*N+k]+dp[i][j]*Binv*(path[now][k]))%MOD
#print(dp)
#print(path)
for i in range(N):
  ans=0
  for j in range(N+1):
    ans=(ans+dp[X][N*j+i])%MOD 
  print(ans)
		
0