CF1000D.Yet Another Problem On a Subsequence

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The sequence of integers a1,a2,,aka_1, a_2, \dots, a_k is called a good array if a1=k1a_1 = k - 1 and a1>0a_1 > 0 . For example, the sequences [3,1,44,0],[1,99][3, -1, 44, 0], [1, -99] are good arrays, and the sequences [3,7,8],[2,5,4,1],[0][3, 7, 8], [2, 5, 4, 1], [0] — are not.

A sequence of integers is called good if it can be divided into a positive number of good arrays. Each good array should be a subsegment of sequence and each element of the sequence should belong to exactly one array. For example, the sequences [2,3,0,1,4][2, -3, 0, 1, 4] , [1,2,3,3,9,4][1, 2, 3, -3, -9, 4] are good, and the sequences [2,3,0,1][2, -3, 0, 1] , [1,2,3,39,4,1][1, 2, 3, -3 -9, 4, 1] — are not.

For a given sequence of numbers, count the number of its subsequences that are good sequences, and print the number of such subsequences modulo 998244353.

输入格式

The first line contains the number n (1n103)n~(1 \le n \le 10^3) — the length of the initial sequence. The following line contains nn integers a1,a2,,an (109ai109)a_1, a_2, \dots, a_n~(-10^9 \le a_i \le 10^9) — the sequence itself.

输出格式

In the single line output one integer — the number of subsequences of the original sequence that are good sequences, taken modulo 998244353.

输入输出样例

  • 输入#1

    3
    2 1 1
    

    输出#1

    2
    
  • 输入#2

    4
    1 1 1 1
    

    输出#2

    7
    

说明/提示

In the first test case, two good subsequences — [a1,a2,a3][a_1, a_2, a_3] and [a2,a3][a_2, a_3] .

In the second test case, seven good subsequences — [a1,a2,a3,a4],[a1,a2],[a1,a3],[a1,a4],[a2,a3],[a2,a4][a_1, a_2, a_3, a_4], [a_1, a_2], [a_1, a_3], [a_1, a_4], [a_2, a_3], [a_2, a_4] and [a3,a4][a_3, a_4] .

首页