CF1204E.Natasha, Sasha and the Prefix Sums

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Natasha's favourite numbers are nn and 11 , and Sasha's favourite numbers are mm and 1-1 . One day Natasha and Sasha met and wrote down every possible array of length n+mn+m such that some nn of its elements are equal to 11 and another mm elements are equal to 1-1 . For each such array they counted its maximal prefix sum, probably an empty one which is equal to 00 (in another words, if every nonempty prefix sum is less to zero, then it is considered equal to zero). Formally, denote as f(a)f(a) the maximal prefix sum of an array a1,,la_{1, \ldots ,l} of length l0l \geq 0 . Then:

$$f(a) = \max (0, \smash{\displaystyle\max_{1 \leq i \leq l}} \sum_{j=1}^{i} a_j ) $$ </p><p>Now they want to count the sum of maximal prefix sums for each such an array and they are asking you to help. As this sum can be very large, output it modulo $998\\: 244\\: 853$$$.

输入格式

The only line contains two integers nn and mm ( 0n,m20000 \le n,m \le 2\,000 ).

输出格式

Output the answer to the problem modulo 998244853998\: 244\: 853 .

输入输出样例

  • 输入#1

    0 2
    

    输出#1

    0
    
  • 输入#2

    2 0
    

    输出#2

    2
    
  • 输入#3

    2 2
    

    输出#3

    5
    
  • 输入#4

    2000 2000
    

    输出#4

    674532367
    

说明/提示

In the first example the only possible array is [-1,-1], its maximal prefix sum is equal to 00 .

In the second example the only possible array is [1,1], its maximal prefix sum is equal to 22 .

There are 66 possible arrays in the third example:

[1,1,-1,-1], f([1,1,-1,-1]) = 2

[1,-1,1,-1], f([1,-1,1,-1]) = 1

[1,-1,-1,1], f([1,-1,-1,1]) = 1

[-1,1,1,-1], f([-1,1,1,-1]) = 1

[-1,1,-1,1], f([-1,1,-1,1]) = 0

[-1,-1,1,1], f([-1,-1,1,1]) = 0

So the answer for the third example is 2+1+1+1+0+0=52+1+1+1+0+0 = 5 .

首页