Problem Description
You are given an integer array nums. A subsequence sub of nums with length x is called valid if it satisfies: (sub[0] + sub[1]) % 2 == (sub[1] + sub[2]) % 2 == ... == (sub[x - 2] + sub[x - 1]) % 2. Return the length of the longest valid subsequence of nums. A subsequence is an array that can be derived from another array by deleting some or no elements without changing the order of the remaining elements.
Key Insights
- A valid subsequence must have all adjacent pairs that yield the same parity (even or odd).
- The longest valid subsequence can be formed by combining all even and all odd numbers.
- The total length of the longest valid subsequence will be the maximum of the count of even numbers and the count of odd numbers.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the input array nums.
Space Complexity: O(1), since only a few variables are used to store counts.
Solution
To solve the problem, we can iterate through the given array and count how many even and odd numbers there are. Since a valid subsequence can consist of either all even numbers or all odd numbers, the length of the longest valid subsequence will be the maximum of these two counts.