CF1523E.Crypto Lights

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

To monitor cryptocurrency exchange rates trader William invented a wonderful device consisting of nn 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 kk 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 tt ( 1t101 \le t \le 10 ). Description of the test cases follows.

The only line for each test case contains two integers nn and kk ( 2kn1052 \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 109+710^9+7 .

Formally, let M=109+7M = 10^9+7 . It can be shown that the answer can be expressed as an irreducible fraction pq\frac{p}{q} , where pp and qq are integers and q≢0(modM)q \not \equiv 0 \pmod{M} . Output the integer equal to pq1modMp \cdot q^{-1} \bmod M . In other words, output such an integer xx that 0x<M0 \le x < M and xqp(modM)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)(1, 2)22 lights are turned on
  2. (1,3,2)(1, 3, 2)33 lights are turned on
  3. (2,1)(2, 1)22 lights are turned on
  4. (2,3)(2, 3)22 lights are turned on
  5. (3,2)(3, 2)22 lights are turned on
  6. (3,1,2)(3, 1, 2)33 lights are turned on

Then the final expected value will be equal to 26\frac{2}{6} + 36\frac{3}{6} + 26\frac{2}{6} + 26\frac{2}{6} + 26\frac{2}{6} + 36\frac{3}{6} = 146\frac{14}{6} = 73\frac{7}{3} .

Then the required output will be 333333338333333338 , since 33333333837(mod109+7)333333338 \cdot 3 \equiv 7 \pmod{10^9+7} .

首页