3409. Longest Subsequence With Decreasing Adjacent Difference
You are given an array of integers
nums
.Your task is to find the length of the longest subsequence
seq
ofnums
, such that the absolute differences between consecutive elements form a non-increasing sequence of integers. In other words, for a subsequenceseq0
,seq1
,seq2
, …,seqm
ofnums
,|seq1 - seq0| >= |seq2 - seq1| >= ... >= |seqm - seqm - 1|
.Return the length of such a subsequence.
A subsequence is an non-empty array that can be derived from another array by deleting some or no elements without changing the order of the remaining elements.
c++
1 | int fenwick[301][303]; |