What is the best case input for Shellsort?
The order of the input does affect the cost.
Remember what sort is used for sorting the sublists.
Insertion sort is used to sort the sublists.
Insertion sort's best case is when the input is ordered
If the input to Shellsort is ordered, than the input to each call to Insertion sort on the sublists will also be ordered.