could you please fix this table? the columns are night right. I have 5 columns as it shows in the first line of the following code.
\newcolumntype{C}{>{\centering\arraybackslash}X}
`\lipsum[1]
\begin{table}[!h]
\caption{Running times in seconds on symmetric MINLP.}
\label{Table}
\begin{tabularx}{\textwidth}{@{} c>{\hsize=0.5\hsize}C
>{\hsize=1.5\hsize}C
@{} }
\toprule
Name & Algorithm & Cycle & Total time (s) & Number of sub-problems \\
\midrule
P1 & 1 & $ (1,2,3,4,5)$ & .. & .. \\
\midrule
P2 & 2 & $ (1,15,7,5,12) $ & .. & .. \\
\midrule
P2 & 3 & $(1,15,7,5,12),(2,9,13,14,8) $ & ... &...\\
\midrule
P3 & 2 & $(1,7,12,16,19,21,6)$ & ... & ...\\
\midrule
P3 & 3 & $(1,7,12,16,19,21,6), (2 ,8 ,13, 17, 20, 5, 11)$ & ... & ...\\
\midrule
P4 & 2 & $(( 1, 3, 5, 6, 7,22,13,23)$ & ... & ...\\
\midrule
P4 & 2 & $( 1, 3, 5, 6, 7,22,13,23), (4,15,16,17,14,21,19,12)$ & ... & ...\\
\bottomrule
\end{tabularx}
\end{table}
\lipsum[2]`


