結果

問題 No.916 Encounter On A Tree
ユーザー maspymaspy
提出日時 2020-02-27 14:48:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,419 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 85,400 KB
最終ジャッジ日時 2024-10-13 15:56:38
合計ジャッジ時間 35,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 472 ms
44,428 KB
testcase_01 AC 460 ms
44,424 KB
testcase_02 AC 456 ms
44,424 KB
testcase_03 AC 563 ms
84,896 KB
testcase_04 AC 475 ms
44,040 KB
testcase_05 AC 562 ms
84,916 KB
testcase_06 AC 461 ms
44,300 KB
testcase_07 AC 555 ms
84,688 KB
testcase_08 AC 553 ms
84,892 KB
testcase_09 AC 551 ms
85,088 KB
testcase_10 AC 452 ms
44,164 KB
testcase_11 AC 550 ms
84,596 KB
testcase_12 AC 456 ms
44,164 KB
testcase_13 AC 586 ms
85,400 KB
testcase_14 WA -
testcase_15 AC 554 ms
85,208 KB
testcase_16 AC 460 ms
44,560 KB
testcase_17 AC 551 ms
84,900 KB
testcase_18 AC 557 ms
85,064 KB
testcase_19 AC 548 ms
84,812 KB
testcase_20 AC 457 ms
44,296 KB
testcase_21 AC 544 ms
85,368 KB
testcase_22 AC 462 ms
44,332 KB
testcase_23 AC 544 ms
84,904 KB
testcase_24 AC 452 ms
43,920 KB
testcase_25 AC 546 ms
84,780 KB
testcase_26 AC 459 ms
44,292 KB
testcase_27 AC 560 ms
84,456 KB
testcase_28 AC 454 ms
44,056 KB
testcase_29 AC 552 ms
84,520 KB
testcase_30 AC 453 ms
44,048 KB
testcase_31 AC 466 ms
44,424 KB
testcase_32 AC 450 ms
44,420 KB
testcase_33 AC 458 ms
44,048 KB
testcase_34 AC 555 ms
84,692 KB
testcase_35 AC 565 ms
84,992 KB
testcase_36 AC 553 ms
84,832 KB
testcase_37 AC 570 ms
85,332 KB
testcase_38 AC 547 ms
84,772 KB
testcase_39 AC 457 ms
44,304 KB
testcase_40 AC 546 ms
85,056 KB
testcase_41 AC 564 ms
84,940 KB
testcase_42 AC 562 ms
84,992 KB
testcase_43 AC 570 ms
84,900 KB
testcase_44 AC 467 ms
44,140 KB
testcase_45 AC 561 ms
84,984 KB
testcase_46 AC 455 ms
44,044 KB
testcase_47 AC 677 ms
84,664 KB
testcase_48 AC 465 ms
43,904 KB
testcase_49 AC 563 ms
85,312 KB
testcase_50 AC 557 ms
84,460 KB
testcase_51 AC 549 ms
84,532 KB
testcase_52 AC 575 ms
84,692 KB
testcase_53 AC 552 ms
84,632 KB
testcase_54 AC 462 ms
44,432 KB
testcase_55 AC 565 ms
84,716 KB
testcase_56 AC 557 ms
84,644 KB
testcase_57 AC 564 ms
85,232 KB
testcase_58 AC 559 ms
85,120 KB
testcase_59 AC 573 ms
84,604 KB
testcase_60 AC 569 ms
84,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


# %%
import numpy as np

# %%
MOD = 10 ** 9 + 7

# %%


def cumprod(A, MOD=MOD):
    L = len(A)
    Lsq = int(L**.5 + 1)
    A = np.resize(A, Lsq**2).reshape(Lsq, Lsq)
    for n in range(1, Lsq):
        A[:, n] *= A[:, n - 1]
        A[:, n] %= MOD
    for n in range(1, Lsq):
        A[n] *= A[n - 1, -1]
        A[n] %= MOD
    return A.ravel()[:L]


def make_fact(U, MOD=MOD):
    x = np.arange(U, dtype=np.int64)
    x[0] = 1
    fact = cumprod(x, MOD)
    x = np.arange(U, 0, -1, dtype=np.int64)
    x[0] = pow(int(fact[-1]), MOD - 2, MOD)
    fact_inv = cumprod(x, MOD)[::-1]
    fact.flags.writeable = False
    fact_inv.flags.writeable = False
    return fact, fact_inv


# %%
D, L, R, K = map(int, read().split())

# %%
DL = L.bit_length()
DR = R.bit_length()
if DL > DR:
    DL, DR = DL, DR
lca_dep, r = divmod((DL + DR - K), 2)
if lca_dep < 0 or lca_dep > L or r:
    print(0)
    exit()

# %%
K, DL, DR, lca_dep
if lca_dep == DL:
    R_cand = 2 ** (DR - DL)
else:
    R_cand = 2 ** (DR - lca_dep - 1)
# %%
fact, fact_inv = make_fact(2 ** 20)
total = 1
for n in range(1, D + 1):
    total *= fact[2 ** (n - 1)]
    total %= MOD
total *= R_cand
total %= MOD
d = pow(2, DR - 1, MOD)
if DL == DR:
    d -= 1
total *= pow(d, MOD - 2, MOD)
total %= MOD
print(total)
0