------
## 最终结论
```python
import heapq

def merge_sorted_list(*lists):
    return list(heapq.merge(*lists))
```