結果
問題 | No.916 Encounter On A Tree |
ユーザー | kurimupy |
提出日時 | 2020-06-18 14:26:05 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,135 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 61,184 KB |
最終ジャッジ日時 | 2024-07-03 12:49:41 |
合計ジャッジ時間 | 37,691 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 570 ms
61,056 KB |
testcase_01 | AC | 562 ms
61,056 KB |
testcase_02 | AC | 553 ms
61,056 KB |
testcase_03 | WA | - |
testcase_04 | AC | 571 ms
61,056 KB |
testcase_05 | WA | - |
testcase_06 | AC | 571 ms
61,056 KB |
testcase_07 | WA | - |
testcase_08 | AC | 571 ms
61,056 KB |
testcase_09 | AC | 567 ms
61,056 KB |
testcase_10 | AC | 551 ms
61,056 KB |
testcase_11 | AC | 561 ms
61,056 KB |
testcase_12 | AC | 585 ms
61,184 KB |
testcase_13 | AC | 595 ms
61,056 KB |
testcase_14 | AC | 559 ms
61,184 KB |
testcase_15 | AC | 573 ms
61,056 KB |
testcase_16 | AC | 565 ms
61,056 KB |
testcase_17 | AC | 563 ms
61,056 KB |
testcase_18 | AC | 551 ms
61,056 KB |
testcase_19 | AC | 574 ms
61,056 KB |
testcase_20 | AC | 565 ms
61,056 KB |
testcase_21 | WA | - |
testcase_22 | AC | 562 ms
61,056 KB |
testcase_23 | WA | - |
testcase_24 | AC | 561 ms
61,056 KB |
testcase_25 | WA | - |
testcase_26 | AC | 567 ms
61,056 KB |
testcase_27 | WA | - |
testcase_28 | AC | 560 ms
61,184 KB |
testcase_29 | WA | - |
testcase_30 | AC | 565 ms
61,056 KB |
testcase_31 | AC | 569 ms
61,056 KB |
testcase_32 | AC | 556 ms
61,056 KB |
testcase_33 | AC | 584 ms
61,056 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 598 ms
60,928 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 562 ms
61,056 KB |
testcase_40 | AC | 561 ms
61,184 KB |
testcase_41 | AC | 558 ms
61,056 KB |
testcase_42 | AC | 569 ms
61,184 KB |
testcase_43 | AC | 560 ms
61,056 KB |
testcase_44 | AC | 563 ms
61,056 KB |
testcase_45 | WA | - |
testcase_46 | AC | 588 ms
61,056 KB |
testcase_47 | AC | 567 ms
61,056 KB |
testcase_48 | AC | 577 ms
61,056 KB |
testcase_49 | AC | 576 ms
61,056 KB |
testcase_50 | WA | - |
testcase_51 | AC | 562 ms
61,056 KB |
testcase_52 | WA | - |
testcase_53 | AC | 557 ms
61,056 KB |
testcase_54 | AC | 554 ms
60,928 KB |
testcase_55 | WA | - |
testcase_56 | AC | 562 ms
61,056 KB |
testcase_57 | WA | - |
testcase_58 | AC | 555 ms
61,056 KB |
testcase_59 | WA | - |
testcase_60 | WA | - |
ソースコード
d, l, r, k = map(int, input().split()) mod = 10**9 + 7 depthl = 0 depthr = 0 for i in range(30): if 2**i <= l < 2**(i+1): depthl = i+1 for i in range(30): if 2**i <= r < 2**(i+1): depthr = i+1 ans = 0 power = [1 for i in range(10**6*2)] for i in range(1, 10**6+10**5): power[i] = power[i-1]*i power[i] %= mod for i in range(1, d+1): # lcaの高さを固定 lca = i res = 2*pow(2, lca-1, mod) if depthl+depthr-2*lca != k: continue if depthl < lca: continue if lca < depthl: res = res*pow(2, depthl-lca-1, mod)*pow(2, depthr-lca-1, mod) D = {depth: 2**(depth-1) for depth in range(1, d+1)} D[depthr] -= 1 D[depthl] -= 1 D[lca] -= 1 for depth in D.keys(): res *= power[D[depth]] res %= mod elif lca == depthl: res *= pow(2, depthr-lca-1, mod) D = {depth: 2**(depth-1) for depth in range(1, d+1)} D[depthr] -= 1 D[lca] -= 1 for depth in D.keys(): res *= power[D[depth]] res %= mod ans += res ans %= mod print(ans%mod)