結果

問題 No.916 Encounter On A Tree
ユーザー ptotqptotq
提出日時 2019-10-26 00:06:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,046 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,480 KB
最終ジャッジ日時 2024-09-13 10:28:17
合計ジャッジ時間 9,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 216 ms
31,304 KB
testcase_03 AC 220 ms
31,352 KB
testcase_04 AC 216 ms
31,260 KB
testcase_05 AC 218 ms
31,388 KB
testcase_06 AC 211 ms
31,324 KB
testcase_07 AC 217 ms
31,276 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 30 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 210 ms
31,392 KB
testcase_13 WA -
testcase_14 AC 213 ms
31,292 KB
testcase_15 WA -
testcase_16 AC 77 ms
16,000 KB
testcase_17 AC 214 ms
31,480 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 216 ms
31,404 KB
testcase_20 AC 214 ms
31,196 KB
testcase_21 AC 219 ms
31,260 KB
testcase_22 AC 215 ms
31,380 KB
testcase_23 AC 213 ms
31,196 KB
testcase_24 AC 215 ms
31,280 KB
testcase_25 AC 225 ms
31,276 KB
testcase_26 AC 127 ms
21,120 KB
testcase_27 AC 123 ms
21,248 KB
testcase_28 AC 76 ms
15,872 KB
testcase_29 AC 217 ms
31,264 KB
testcase_30 AC 215 ms
31,428 KB
testcase_31 AC 218 ms
31,320 KB
testcase_32 AC 221 ms
31,204 KB
testcase_33 AC 122 ms
21,120 KB
testcase_34 AC 78 ms
16,000 KB
testcase_35 AC 53 ms
13,312 KB
testcase_36 WA -
testcase_37 AC 211 ms
31,288 KB
testcase_38 AC 76 ms
15,872 KB
testcase_39 AC 210 ms
31,388 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 29 ms
10,752 KB
testcase_43 AC 30 ms
10,880 KB
testcase_44 AC 30 ms
10,624 KB
testcase_45 AC 54 ms
13,440 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 WA -
testcase_48 AC 30 ms
10,880 KB
testcase_49 WA -
testcase_50 AC 30 ms
10,752 KB
testcase_51 WA -
testcase_52 AC 29 ms
10,880 KB
testcase_53 WA -
testcase_54 AC 30 ms
10,880 KB
testcase_55 AC 30 ms
10,752 KB
testcase_56 AC 30 ms
10,880 KB
testcase_57 AC 32 ms
11,008 KB
testcase_58 WA -
testcase_59 AC 33 ms
11,136 KB
testcase_60 AC 36 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d, l, r, k = map(int, input().split())
mod = 10**9 + 7
ans = 1
fac = [1]*(2**(d-1)+1)
for i in range(1, 2**(d-1)+1):
    fac[i] = (fac[i-1] * i) % mod
depth1, depth2 = -1, -1

for depth in range(d):
    i_l, i_r = 2**depth, 2**(depth+1)-1
    nodes = 2**depth
    if i_l <= l <= i_r:
        depth1 = depth
        nodes -= 1
    if i_l <= r <= i_r:
        depth2 = depth
        nodes -= 1

    ans = (ans * fac[nodes]) % mod

if depth1 != depth2:
    lca_depth = depth1 - (k - (depth2 - depth1)) // 2
    need_edge = (depth1 - lca_depth) * 2 + (depth2 - depth1)
    # print(depth1, depth2, lca_depth, need_edge)
    if (k - (depth2 - depth1)) % 2 == 1 or lca_depth < 0 or depth1 < lca_depth or k != need_edge:
        ans = 0
    else:
        ans = ans * pow(2, depth2 - lca_depth, mod) // 2 * pow(2, depth1, mod) % mod
else:
    if k % 2 == 1 or (d-1)*2 < k:
        ans = 0
    else:
        nodes = 2 ** depth1
        unit = 2 ** (k//2)
        n = nodes // unit
        ans = ans * (pow(unit//2, 2, mod) * n) * 2 % mod

print(ans % mod)
0