The key to this problem is to notice what choices don't actually change the sum and can therefore be normalized away.
- Whenever a number is negative, the next number decreases in magnitude, so the only way to increase magnitudes is by adding positive numbers.
- Indeed, $0$ and $-2$ create the same choices next round: $\pm1$, and so does $1$ and $-3$ ($\pm2$).
- The way to keep a magnitude stable is to alternate between a positive and a negative number: $+n,-(n+1),+n,-(n+1),\dotsc$. This pairs off, with each pair contributing a net $-1$ to the total.
- Now notice that if we change the sequence to $+n,+(n+1),-(n-2),-(n-1),\dotsc$ the sum did not change. You can still pair off, just further away.
From all of the above, the normalization is as follows:
- Whenever a negative number immediately follows a positive number, pair them up, and they must contribute $-1$ to the sum.
- Whenever multiple consecutive negative numbers are chosen, pair them up with the nearest preceding positive number which exists by (1), and must also contribute $-1$ to the sum.
As an illustration, take the sequence
$$0,+1,+2,+3,-4,-3,-2,+1,-2,+1,+2\text{.}$$
We pair them up into:
$$0^*,+1_a,+2_b,+3_c,-4_c,-3_b,-2_a,+1_d,-2_d,+1^*,+2^*$$
and notice this is equivalent to
$$0_a,-1_a,0_b,-1_b,0_c,-1_c,0_d,-1_d,0^*,+1^*,+2^*$$
so the sum is simply $-4$ for the four pairs and $+3$ for the sum $\sum_{i=0}^2i$.
This leaves us with exactly one dimension of choice: how long of an increasing sequence of nonnegative integers to add. By parity, this has to be an odd length.
- Length $1$: that's a sequence of $0,-1,0,-1,\ldots$, with five pairs and a $0$ at the end for $-5$
- Length $3$: four pairs against $\sum_{i=0}^2i$ for $-1$
- Length $5$: three pairs against $\sum_{i=0}^4i$ for $+7$
- Obviously length $7,9,11$ are worse.
Thus the answer is $1$.