It’s normal to feel worried and tense the day before a programming contest. To relax, you went out for a drink with some friends in a nearby pub. To keep your mind sharp for the next day, you decided to play the following game. To start, your friends will give you a sequence of $N$ integers $X_1, X_2, ..., X_N$. Then, there will be $K$ rounds; at each round, your friends will issue a command, which can be:
• a change command, when your friends want to change one of the values in the sequence; or
• a product command, when your friends give you two values $I$, $J$ and ask you if the product $X_I \times X_{I+1} \times ... \times X_{J−1} \times X_J$ is positive, negative or zero.
Since you are at a pub, it was decided that the penalty for a wrong answer is to drink a pint of beer. You are worried this could affect you negatively at the next day’s contest, and you don’t want to check if Ballmer’s peak theory is correct. Fortunately, your friends gave you the right to use your notebook. Since you trust more your coding skills than your math, you decided to write a program to help you in the game.