A14360 | Crypto Lights
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
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}$ .
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
Explanation of the first sample test case:
Let's write out all possible sequences of light toggles, which will make the device complete its operation:
1. $(1, 2)$ — $2$ lights are turned on
2. $(1, 3, 2)$ — $3$ lights are turned on
3. $(2, 1)$ — $2$ lights are turned on
4. $(2, 3)$ — $2$ lights are turned on
5. $(3, 2)$ — $2$ lights are turned on
6. $(3, 1, 2)$ — $3$ lights are turned on
Then the final expected value will be equal to $\frac{2}{6}$ + $\frac{3}{6}$ + $\frac{2}{6}$ + $\frac{2}{6}$ + $\frac{2}{6}$ + $\frac{3}{6}$ = $\frac{14}{6}$ = $\frac{7}{3}$ .
Then the required output will be $333333338$ , since $333333338 \cdot 3 \equiv 7 \pmod{10^9+7}$ .
Let's write out all possible sequences of light toggles, which will make the device complete its operation:
1. $(1, 2)$ — $2$ lights are turned on
2. $(1, 3, 2)$ — $3$ lights are turned on
3. $(2, 1)$ — $2$ lights are turned on
4. $(2, 3)$ — $2$ lights are turned on
5. $(3, 2)$ — $2$ lights are turned on
6. $(3, 1, 2)$ — $3$ lights are turned on
Then the final expected value will be equal to $\frac{2}{6}$ + $\frac{3}{6}$ + $\frac{2}{6}$ + $\frac{2}{6}$ + $\frac{2}{6}$ + $\frac{3}{6}$ = $\frac{14}{6}$ = $\frac{7}{3}$ .
Then the required output will be $333333338$ , since $333333338 \cdot 3 \equiv 7 \pmod{10^9+7}$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted