結果

問題 No.2584 The University of Tree
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-11-27 21:40:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,868 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 146,816 KB
最終ジャッジ日時 2024-09-27 04:41:06
合計ジャッジ時間 25,784 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
146,816 KB
testcase_01 AC 29 ms
11,008 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
11,008 KB
testcase_04 AC 33 ms
11,008 KB
testcase_05 AC 36 ms
11,136 KB
testcase_06 AC 33 ms
11,136 KB
testcase_07 AC 33 ms
11,136 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 33 ms
11,008 KB
testcase_10 AC 33 ms
11,008 KB
testcase_11 AC 32 ms
11,008 KB
testcase_12 AC 33 ms
11,008 KB
testcase_13 AC 32 ms
11,136 KB
testcase_14 AC 32 ms
11,136 KB
testcase_15 AC 33 ms
11,136 KB
testcase_16 AC 33 ms
11,136 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 34 ms
10,880 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 33 ms
11,008 KB
testcase_21 AC 32 ms
11,136 KB
testcase_22 AC 2,766 ms
79,488 KB
testcase_23 TLE -
testcase_24 AC 1,959 ms
57,856 KB
testcase_25 AC 2,308 ms
65,536 KB
testcase_26 AC 1,500 ms
53,116 KB
testcase_27 AC 2,750 ms
83,232 KB
testcase_28 AC 1,483 ms
48,368 KB
testcase_29 AC 780 ms
31,232 KB
testcase_30 TLE -
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 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
MOD=998244353
N=int(input())
gr=[]
road=[[] for i in range(N-1)]
for i in range(N):
    C,*E=list(map(int,input().split()))
    gr.append(E)
    for j in E:
        road[j-1].append(i)
ser=[{} for i in range(N)]
for i in range(N):
    for j,k in enumerate(gr[i]):
        if road[k-1][0]==i:
            gr[i][j]=road[k-1][1]
        else:
            gr[i][j]=road[k-1][0]
        ser[i][gr[i][j]]=j
dp=[[-1]*len(gr[i]) for i in range(N)]
top=[]
vert=deque([(0,0,-1)])
while len(vert)>0:
    st,pos,bef=vert.pop()
    if st==0:
        top.append(pos)
        vert.append((1,pos,bef))
        for i in gr[pos]:
            if i!=bef:
                vert.append((0,i,pos))
    else:
        if bef==-1:
            continue
        prod=pos+1
        ret=0
        for i in range(ser[pos][bef]+1,len(gr[pos])):
            ret+=dp[pos][ser[pos][gr[pos][i]]]*prod
            prod*=pos+1
            ret%=MOD
            prod%=MOD
        ret+=prod
        prod*=pos+1
        for i in range(ser[pos][bef]):
            ret+=dp[pos][ser[pos][gr[pos][i]]]*prod
            prod*=pos+1
            ret%=MOD
            prod%=MOD
        dp[bef][ser[bef][pos]]=ret
for i in top:
    lf=[0]
    ri=[0]
    rev=pow(i+1,-1,MOD)
    prod=i+1
    for j in dp[i]:
        lf.append(lf[-1]+j*prod)
        prod*=i+1
        prod%=MOD
        lf[-1]%=MOD
    prod=rev
    for j in reversed(dp[i]):
        ri.append(ri[-1]+j*prod)
        prod*=rev
        prod%=MOD
        ri[-1]%=MOD
    cul=-2
    cur=0
    prod=i+1
    for j in reversed(gr[i]):
        dp[j][ser[j][i]]=prod+(lf[cul]+ri[cur])*prod
        dp[j][ser[j][i]]%=MOD
        prod*=i+1
        prod%=MOD
        cur+=1
        cul-=1
for i in range(N):
    ans=0
    prod=i+1
    for j in dp[i]:
        ans+=j*prod
        ans%=MOD
        prod*=i+1
        prod%=MOD
    print(ans)
0