I would like to start the line numbering of the following code not from 1 but from 12 (as it is cut out of a larger code). So it should be 12,13,14,15 instead of 1,2,3,4.
\documentclass{article}
\usepackage{algorithm}
\usepackage[noend]{algpseudocode}
\begin{document}
\begin{algorithm}[h]
\begin{algorithmic}[1]
\If{$(w,s')$ not in $Q$} \Comment{insert}
\State $k(w,s') \gets d_{r}(w,s') + \pi_{w,s'}$
\Else \Comment{decrease}
\State $k(w,s') \gets d_{r}(w,s')+ \pi_{w,s'}$
\EndIf
\end{algorithmic}
\end{algorithm}
\end{document}

