[EDIT] After the comments and answer I understood that my formation of the problem is incorrect. However I'm still interested in a stochastic solution to the original riddle. Please skip to the "Background" part of this question. And thanks for setting a bounty on this question!!
Let $X_1,X_2,...$ be independent and identically distributed random variable. $X_i = 2$ or $X_i=-1$ each with 50% probability. And let $S_n = X_1+\cdots+ X_n$ be the associated random walk. So we can think of this as a random walk with drift $\mu = 0.5$ and step-length = $1.5$
For a given constant $m$, suppose we define a stopping rule to stop when $S_n \leq -m$ or $S_n \geq K$. How do we find $K$, such that the probability of stopping at $S_n \geq K$ is equal to the probability of stopping at $S_n \leq -m$?
When there is no drift the solution is trivial $K = m$. I suspect this little modification should be a classical problem in stochastic process too?
The solution is apparently $K \sim O(m^2)$, but I'm looking for a stochastic explanation. see the background below.
Background: I found this riddle and its solution. I reproduce the riddle here:
At a pivotal moment in an epic battle between the living and the dead, the Night King, head of the army of the dead, raises all the fallen (formerly) living soldiers to join his ranks. This ability obviously presents a huge military advantage, but how big an advantage exactly?
Forget the Battle of Winterfell and model our battle as follows. Each army lines up single file, facing the other army. One soldier steps forward from each line and the pair duels — half the time the living soldier wins, half the time the dead soldier wins. If the living soldier wins, he goes to the back of his army’s line, and the dead soldier is out (the living army uses dragonglass weapons, so the dead soldier is dead forever this time). If the dead soldier wins, he goes to the back of their army’s line, but this time the (formerly) living soldier joins him there. (Reanimation is instantaneous for this Night King.) The battle continues until one army is entirely eliminated.
What starting sizes of the armies, living and dead, give each army a 50-50 chance of winning?
So we can think of this riddle as above problem. Let $m$ be the size of dead army. Let $S_i$ be (current difference in army sizes - initial difference of army sizes). For each step $S_i$ increments by either −1 or 2. If $S_n=−m$, that means comparing to the initial state, the dead army is down by $−m$, the battle ended. If $S_n=K$, that means comparing to the initial state, the dead army is up by $K$, the battle ended. The solution is apparently $K \sim O(m^2)$. The combinatorial argument is nice, but the paper offers no stochastic explanation, which I am truly curious about.
I am fine with an approximation solution. So if we replace $X_i$ with a normal random variable with non-zero mean is fine to me too, if that helps with the estimation. But I think for a large enough $n$ this probably doesn't matter anyways.
If you take $K=+\infty$ and $m=some\ large\ number$, then it is more likely to go right ad infinum then to finally hit $-m$. From the central limit theorem one can deduce that on step $n$ with high probability we will be somewhere within the range $\mu n \pm c\sqrt n$, where $c$ is a constant depending on our desired confidence with which we want to make such a statement (and it also includes that $1.5$ coefficient). And $\mu n$ asymptotically grows faster than $c\sqrt n$ independently of the value of $c$, so from some point $n$ this range is never hitting negative zone.
Therefore, for large enough $m$ there is simply no such $K$. And for small $m$ I suspect you can't really find this in any better way than with Monte-Carlo simulation.