結果
問題 | No.1227 I hate ThREE |
ユーザー | tyawanmusi |
提出日時 | 2020-07-27 19:43:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 756 bytes |
コンパイル時間 | 211 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 243,200 KB |
最終ジャッジ日時 | 2024-11-15 15:48:36 |
合計ジャッジ時間 | 25,509 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | RE | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
mod=10**9+7 n,c=map(int,input().split()) edge=[[]for _ in range(n)] for _ in range(n-1): a,b=map(int,input().split()) a-=1 b-=1 edge[a].append(b) edge[b].append(a) def solve(x): minc=min(2*n+7,x) dp=[minc*[1]for _ in range(n)] def dfs(r,node): for mode in edge[node]: if mode==r:continue dp1=dfs(node,mode) dp[node][0]=(dp[node][0]*dp1[1])%mod dp[node][-1]=(dp[node][-1]*dp1[-2])%mod for i in range(1,minc-1): dp[node][i]=(dp[node][i]*(dp1[i-1]+dp1[i+1]))%mod return dp[node] dfs(-1,0) if minc==x:return sum(dp[0]) else:return sum(dp[0])+(x-minc)*dp[0][minc//2] ans1=solve((c+2)//3) if c>=4 else 0 ans2=solve((c+1)//3) if c>=5 else 0 ans3=solve(c//3) if c>=6 else 0 print(ans1+ans2+ans3)