CF896D.Nephren Runs a Cinema

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Lakhesh loves to make movies, so Nephren helps her run a cinema. We may call it No. 68 Cinema.

However, one day, the No. 68 Cinema runs out of changes (they don't have 50-yuan notes currently), but Nephren still wants to start their business. (Assume that yuan is a kind of currency in Regulu Ere.)

There are three types of customers: some of them bring exactly a 50-yuan note; some of them bring a 100-yuan note and Nephren needs to give a 50-yuan note back to him/her; some of them bring VIP cards so that they don't need to pay for the ticket.

Now nn customers are waiting outside in queue. Nephren wants to know how many possible queues are there that they are able to run smoothly (i.e. every customer can receive his/her change), and that the number of 50-yuan notes they have after selling tickets to all these customers is between ll and rr , inclusive. Two queues are considered different if there exists a customer whose type is different in two queues. As the number can be large, please output the answer modulo pp .

输入格式

One line containing four integers nn ( 1<=n<=105)1<=n<=10^{5}) , pp ( 1<=p<=2109)1<=p<=2·10^{9}) , ll and rr ( 0<=l<=r<=n0<=l<=r<=n ).

输出格式

One line indicating the answer modulo pp .

输入输出样例

  • 输入#1

    4 97 2 3
    

    输出#1

    13
    
  • 输入#2

    4 100 0 4
    

    输出#2

    35
    

说明/提示

We use A, B and C to indicate customers with 50-yuan notes, customers with 100-yuan notes and customers with VIP cards respectively.

For the first sample, the different possible queues that there are 22 50-yuan notes left are AAAB, AABA, ABAA, AACC, ACAC, ACCA, CAAC, CACA and CCAA, and the different possible queues that there are 33 50-yuan notes left are AAAC, AACA, ACAA and CAAA. So there are 1313 different queues satisfying the first sample. Similarly, there are 3535 different queues satisfying the second sample.

首页