https://leetcode.com/problems/bulb-switcher-ii/
There is a room with
n
lights which are turned on initially and 4 buttons on the wall. After performing exactlym
unknown operations towards buttons, you need to return how many different kinds of status of then
lights could be.Suppose
n
lights are labeled as number [1, 2, 3 ..., n], function of these 4 buttons are given below:
- Flip all the lights.
- Flip lights with even numbers.
- Flip lights with odd numbers.
- Flip lights with (3k + 1) numbers, k = 0, 1, 2, ...
Example 1:
Input: n = 1, m = 1. Output: 2 Explanation: Status can be: [on], [off]Example 2:
Input: n = 2, m = 1. Output: 3 Explanation: Status can be: [on, off], [off, on], [off, off]Example 3:
Input: n = 3, m = 1. Output: 4 Explanation: Status can be: [off, on, off], [on, off, on], [off, off, off], [off, on, on].Note:
n
andm
both fit in range [0, 1000].
https://leetcode.com/problems/bulb-switcher-ii/discuss/107271/C%2B%2B-concise-code-O(1)
前三个操作可规约(2->1),就导致操作总数可规约(>3 -> 3)。n < 2 会导致某些操作意义发生变化,故需要特殊讨论。
class Solution {
public:
int flipLights(int n, int m) {
if(m == 0) return 1;
if(n == 1) return 2;
if(n == 2){
if(m == 1) return 3;
else return 4;
}
if(m == 1) return 4;
if(m == 2) return 7;
else return 8;
}
};