CF1153F.Serval and Bonus Problem

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Getting closer and closer to a mathematician, Serval becomes a university student on math major in Japari University. On the Calculus class, his teacher taught him how to calculate the expected length of a random subsegment of a given segment. Then he left a bonus problem as homework, with the award of a garage kit from IOI. The bonus is to extend this problem to the general case as follows.

You are given a segment with length ll . We randomly choose nn segments by choosing two points (maybe with non-integer coordinates) from the given segment equiprobably and the interval between the two points forms a segment. You are given the number of random segments nn , and another integer kk . The 2n2n endpoints of the chosen segments split the segment into (2n+1)(2n+1) intervals. Your task is to calculate the expected total length of those intervals that are covered by at least kk segments of the nn random segments.

You should find the answer modulo 998244353998244353 .

输入格式

First line contains three space-separated positive integers nn , kk and ll ( 1kn20001\leq k \leq n \leq 2000 , 1l1091\leq l\leq 10^9 ).

输出格式

Output one integer — the expected total length of all the intervals covered by at least kk segments of the nn random segments modulo 998244353998244353 .

Formally, let M=998244353M = 998244353 . 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

    1 1 1
    

    输出#1

    332748118
    
  • 输入#2

    6 2 1
    

    输出#2

    760234711
    
  • 输入#3

    7 5 3
    

    输出#3

    223383352
    
  • 输入#4

    97 31 9984524
    

    输出#4

    267137618
    

说明/提示

In the first example, the expected total length is 0101xydxdy=13\int_0^1 \int_0^1 |x-y| \,\mathrm{d}x\,\mathrm{d}y = {1\over 3} , and 313^{-1} modulo 998244353998244353 is 332748118332748118 .

首页