308458: CF1523E. Crypto Lights
Memory Limit:256 MB
Time Limit:3 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Crypto Lights
题意翻译
有 $n$ 个台灯初始时都是暗的,每次等概率随机一个暗台灯将其点亮,若点亮后**存在**一个长度为 $k$ 的连续段有**大于一个**台灯被点亮则立刻停止,求期望点亮多少台灯。答案对 $10^9+7$ 取模。 - $2\le k\le n\le 10^5$题目描述
![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1523E/5925bbb9bbb86a373ea1b1a63885d119a4446a59.png)To monitor cryptocurrency exchange rates trader William invented a wonderful device consisting of $ n $ lights arranged in a row. The device functions in the following way: Initially, all lights on William's device are turned off. At the beginning of a new iteration the device randomly, with a uniform distribution, picks a light that is turned off and turns it on, telling William which cryptocurrency he should invest in. After this iteration if any $ k $ consecutive lights contain more than one turned on light, then the device finishes working. William doesn't like uncertainty, so he wants you to calculate the expected value of the number of lights that are turned on in the device after it finishes working.输入输出格式
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $ t $ ( $ 1 \le t \le 10 $ ). Description of the test cases follows. The only line for each test case contains two integers $ n $ and $ k $ ( $ 2 \le k \le n \le 10^5 $ ), which are the total number of lights and the length of subsegment of lights that are being checked, respectively.
输出格式
For each test case print the answer, modulo $ 10^9+7 $ . Formally, let $ M = 10^9+7 $ . It can be shown that the answer can be expressed as an irreducible fraction $ \frac{p}{q} $ , where $ p $ and $ q $ are integers and $ q \not \equiv 0 \pmod{M} $ . Output the integer equal to $ p \cdot q^{-1} \bmod M $ . In other words, output such an integer $ x $ that $ 0 \le x < M $ and $ x \cdot q \equiv p \pmod{M} $ .
输入输出样例
输入样例 #1
3
3 2
15 2
40 15
输出样例 #1
333333338
141946947
329622137