結果

問題 No.1227 I hate ThREE
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-09-12 02:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,280 ms / 2,000 ms
コード長 1,663 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,692 KB
実行使用メモリ 188,608 KB
最終ジャッジ日時 2025-01-02 06:03:53
合計ジャッジ時間 20,575 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,984 KB
testcase_01 AC 33 ms
52,652 KB
testcase_02 AC 36 ms
52,548 KB
testcase_03 AC 200 ms
82,148 KB
testcase_04 AC 115 ms
78,540 KB
testcase_05 AC 113 ms
78,384 KB
testcase_06 AC 37 ms
52,980 KB
testcase_07 AC 38 ms
54,196 KB
testcase_08 AC 107 ms
79,892 KB
testcase_09 AC 96 ms
79,080 KB
testcase_10 AC 77 ms
77,748 KB
testcase_11 AC 706 ms
105,476 KB
testcase_12 AC 778 ms
108,344 KB
testcase_13 AC 71 ms
76,788 KB
testcase_14 AC 150 ms
81,200 KB
testcase_15 AC 153 ms
83,368 KB
testcase_16 AC 379 ms
98,452 KB
testcase_17 AC 196 ms
86,496 KB
testcase_18 AC 549 ms
103,024 KB
testcase_19 AC 387 ms
98,500 KB
testcase_20 AC 522 ms
104,888 KB
testcase_21 AC 55 ms
72,836 KB
testcase_22 AC 419 ms
98,832 KB
testcase_23 AC 1,133 ms
181,856 KB
testcase_24 AC 1,280 ms
166,168 KB
testcase_25 AC 1,200 ms
188,608 KB
testcase_26 AC 964 ms
120,824 KB
testcase_27 AC 1,071 ms
125,712 KB
testcase_28 AC 1,102 ms
125,388 KB
testcase_29 AC 1,060 ms
125,436 KB
testcase_30 AC 980 ms
121,712 KB
testcase_31 AC 918 ms
121,464 KB
testcase_32 AC 1,070 ms
125,308 KB
testcase_33 AC 922 ms
121,552 KB
testcase_34 AC 1,045 ms
125,860 KB
testcase_35 AC 886 ms
120,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

mod で場合分け
→使える数字の数が変わる

使える数字がX種類の時
数字の付け方を
2 <= X <= N の範囲で求めればいい?

1<=p<=Cの制約の影響を受けない範囲は省いてdp



"""

from sys import stdin
import sys
sys.setrecursionlimit(20000)

def dfs(v,p,num):

    #if memo[v][num] != None:
    #    return memo[v][num]

    ret = 1
    for nex in lis[v]:
        tmp = 0
        if nex != p:
            if num+1 < c:
                if memo[nex][num+1] == None:
                    tmp += dfs(nex,v,num+1)
                else:
                    tmp += memo[nex][num+1]
            if num-1 >= 0:
                if memo[nex][num-1] == None:
                    tmp += dfs(nex,v,num-1)
                else:
                    tmp += memo[nex][num-1]
            ret *= tmp
            ret %= mod

    memo[v][num] = ret
    return ret
                

N,C = map(int,stdin.readline().split())
lis = [ [] for i in range(N) ]

for i in range(N-1):

    a,b = map(int,stdin.readline().split())
    a -= 1
    b -= 1
    lis[a].append(b)
    lis[b].append(a)

#mod 0
mod = 10**9+7
ans = 0


clis = [C//3,C//3+1]
anss = []
for c in clis:
    ans = 0
    if c < 4*N:
        memo = [ [None] * c for i in range(N) ]
        for i in range(c):
            ans += dfs(0,0,i)
    else:
        memo = [ [None] * (2*N) for i in range(N) ]
        for i in range(N):
            ans += dfs(0,0,i) * 2
        ans += pow(2,N-1,mod) * (c-2*N)
    anss.append(ans)

cl2 = [ C//3 , (C+2)//3 , (C+1)//3 ]
aaa = 0
for i in cl2:
    for j in range(2):
        if clis[j] == i:
            aaa += anss[j]
print (aaa % mod)
0