結果
問題 |
No.916 Encounter On A Tree
|
ユーザー |
![]() |
提出日時 | 2019-10-25 22:57:53 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 800 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 31,396 KB |
最終ジャッジ日時 | 2024-09-13 06:44:28 |
合計ジャッジ時間 | 9,331 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 38 WA * 18 |
ソースコード
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: if abs(depth1 - depth2) != k: ans = 0 else: ans = ans * pow(2, depth1, mod) * pow(2, depth2, 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)