Say there are 20 sticks. (Label them A through T.)
Once the sticks are inserted, simply read the order from left to right, bottom to top. (Regardless of how many are on each line and regardless of how many lines.)
Each conceivable-possibility is simply one of the 20-character strings.
In fact, there are, obviously, 20! such conceivable strings. So that's 10^18.
If you actually want the exact answer, and not just a good answer, you're gonna have to measure all 10^18 and find the one that uses the smallest area.
But wait ...
Let's say you started out testing the first conceivably-possible string (ABCDEFGHIJKLMONPQRST).
It could be that it "does not work". Thus, "A" to begin with might be too long to fit on the bottom line**, so we've immediately smashed away a few zillion permutations.
Say A does fit, on the next line, BC may fit but you can't fit BCD - again we've immediately smashed away zillions more. And so on.
So at first we're saying, well 10^18, that's ridiculous. But there's a hell of a lot of pruning.
(It's much like chess, which has Nbig conceivably-possible board positions, but almost all of those are nonsensical, can never be arrived at under the rules of chess.)
Now, my question is: just how nifty is the pruning I describe?
Don't forget I am not (merely) describing an MC solution with some pruning, rather, this is to find the absolute, cosmos-given "real" solution for a given set of sticks.
I observe that there will be a massive amount of pruning (with any "reasonable" stick set) but ... just how much?
Again, the nature of this problem, in my opinion, "physically" introduces a massive amount or pruning from the 20! conceivable-possibilities.
I have no time to run an experiment, unfortunately. My gut instinct is it will prune really well down to manageable - maybe someone else has a take on this?
For my money, finding "video game solutions" (a decent solution, arrived at fast) is not the exciting thing at hand, it's pretty easy to do that. How to find the exact solution?!
Footnotes:
**Obviously there are a couple fiddles here: it could be that nothing fits on the bottom line, so you'd just start at the next line. You'd trivially follow this approach all the way up. Note that of course obviously there are anyway various sick corner cases like "all the sticks are way too long to fit in the bloody parabola."