I would like to confirm that I correctly understand what is meant by "longest non-strictly increasing subsequence". It seems "strictly" relates to excluding equal digits and it does not relate to consecutive digits.
Is 85377429 balanced or not? Is the longest strictly decreasing subsequence the digits 8742 and the longest non-strictly increasing subsequence 5779?
If strictly relates to consecutive digits then 8565327017 would be a balanced number of length four - 6532 versus 5577? Similarly, is 63209789 balanced with length four (6320 versus many possibilities including 789 as the last three digits)? Lastly, according to me 363209789 is not balanced since "longest non-strictly increasing subsequence" is five by using 33789.
Problem 1004
Forum rules
As your posts will be visible to the general public you are requested to be thoughtful in not posting anything that might explicitly give away how to solve a particular problem.
This forum is NOT meant to discuss solution methods for a problem.
See also the topics:
Don't post any spoilers
Comments, questions and clarifications about PE problems.
As your posts will be visible to the general public you are requested to be thoughtful in not posting anything that might explicitly give away how to solve a particular problem.
This forum is NOT meant to discuss solution methods for a problem.
In particular don't post any code fragments or results.
Don't start begging others to give partial answers to problems
Don't ask for hints how to solve a problem
Don't start a new topic for a problem if there already exists one
Don't start begging others to give partial answers to problems
Don't ask for hints how to solve a problem
Don't start a new topic for a problem if there already exists one
See also the topics:
Don't post any spoilers
Comments, questions and clarifications about PE problems.
-
henrig
- Posts: 18
- Joined: Mon Nov 21, 2016 7:39 am
Re: Problem 1004
Is the following rather extreme number balanced with length six: 44444333933222872261151114?
The longest strictly decreasing subsequence is 987654 while there are multiple longest non-strictly increasing subsequences of length six - including 444444, 333338, 333335, 222226 and 1111114.
The longest strictly decreasing subsequence is 987654 while there are multiple longest non-strictly increasing subsequences of length six - including 444444, 333338, 333335, 222226 and 1111114.
-
skoczian
- Posts: 28
- Joined: Sat May 25, 2013 4:43 pm
Re: Problem 1004
I think you are right and the example is clear enough:henrig wrote: Sun Jun 28, 2026 6:58 am I would like to confirm that I correctly understand what is meant by "longest non-strictly increasing subsequence". It seems "strictly" relates to excluding equal digits and it does not relate to consecutive digits.
"For example, the number 77429 is balanced, because both its longest strictly decreasing subsequence (742) and its longest non-strictly increasing subsequence (779) have length 3."
The subsequence 742 consists of consecutive digits, 779 does not.
-
drakempham
- Posts: 1
- Joined: Mon Jun 29, 2026 5:23 am
Re: Problem 1004
Yes, your understanding is correct. A subsequence does not have to be consecutive, but need to preserve original order of character in string.henrig wrote: Sun Jun 28, 2026 6:58 am I would like to confirm that I correctly understand what is meant by "longest non-strictly increasing subsequence". It seems "strictly" relates to excluding equal digits and it does not relate to consecutive digits.
Is 85377429 balanced or not? Is the longest strictly decreasing subsequence the digits 8742 and the longest non-strictly increasing subsequence 5779?
If strictly relates to consecutive digits then 8565327017 would be a balanced number of length four - 6532 versus 5577? Similarly, is 63209789 balanced with length four (6320 versus many possibilities including 789 as the last three digits)? Lastly, according to me 363209789 is not balanced since "longest non-strictly increasing subsequence" is five by using 33789.
So:
- 85377429 is balanced. Its longest strictly decreasing subsequence has length 4, for example.
- 8742, and its longest non-strictly increasing subsequence also has length 4, for example 5779.