Page 1 of 1

Problem 782

Posted: Wed Feb 09, 2022 2:27 pm
by david_bean
Problem 782 (View Problem)
My algorithm can solve most the examples, but I have written this twice now and both ways I get C(20) = 1144, which is 6 below the minimum of the example. Obviously I am not getting the right solution for C(10^4).
It would be appreciated if someone can check if I am on the right track with my logic by letting me know which values of c(20,k) are out, so I can check my logic.
Thanks in advance
David

Re: Problem 782

Posted: Thu Feb 10, 2022 5:11 am
by neverforget
I think it would be too revealing to say which values are wrong or even how many are wrong. So instead I would suggest that you also construct and examine the matrices that purportedly witness your claimed values of $c(n,k)$ to identify those values yourself.

Re: Problem 782

Posted: Thu Feb 10, 2022 10:48 pm
by david_bean
Thank you. I have constructed the matrices as suggested, and have identified some issues. I am now getting C(n,k) slightly greater than some of the examples so I don't think I have my logic incorrect now, I just haven't found all the minimums yet...

Re: Problem 782

Posted: Fri Feb 11, 2022 4:36 am
by GluV
C(10,31)=3 Is it correct? Thank you

Re: Problem 782

Posted: Fri Feb 11, 2022 7:17 pm
by neverforget
I feel $c(10,31)$ is be closer to being a hint rather than a clarification. As the problem states, you'll have to demonstrate it is possible achieve $c(10,31)$ complexity, but not any lower. If it helps clarify, the rows are read left to right and the columns are read top to bottom.

Re: Problem 782

Posted: Wed Feb 16, 2022 9:27 am
by GluV
C(10^2)=30426 Is it right ?

Re: Problem 782

Posted: Wed Feb 16, 2022 12:05 pm
by GluV
It is not correct