DP经典题目,枚举第一个正整数就得到了区间长度,再暴力枚举区间最后一个值,
在DP的时候,可以从i优化到j而不需要倒着循环来DP,f[n+1]就是答案
注意:f[i]的初值为1!
D. Yet Another Problem On a Subsequence
The sequence of integers
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
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.
Input
The first line contains the number
Output
In the single line output one integer — the number of subsequences of the original sequence that are good sequences, taken modulo 998244353.
Examples
input
1 | 3 |
output
1 | 2 |
input
1 | 4 |
output
1 | 7 |
Note
In the first test case, two good subsequences —
In the second test case, seven good subsequences —
1 |
|
Related Issues not found
Please contact @lolifamily to initialize the comment