Is there a closed form solution to the minimization problem $$\min_{c \in \mathbb{R}}\left\lVert c \mathbf{x} - \mathbf{y}\right\rVert_1$$ where $\mathbf{x} = \begin{bmatrix}0 & 1 & \dots & n \end{bmatrix}^T$ and $\mathbf{y} \in \mathbb{R}^{n+1}$ is a fixed vector, and the norm is the $1$-norm?
I know that this can be expressed as the linear program \begin{alignat*}{2} & \text{minimize } & & \boldsymbol{1}^T\mathbf{t} \\ & \text{subject to } & &\begin{aligned}[t] -\mathbf{t} \leq c\mathbf{x} - \mathbf{y} \leq \mathbf{t} \\ \end{aligned} \end{alignat*} but I'm wondering if there are other ways to solve this? Or do there exist any approximations that don't require solving a linear program? Thanks.