You are given a binary array possible of length n.
Alice and Bob are playing a game that consists of n levels. Some of the levels in the game are impossible to clear while others can always be cleared. In particular, if possible[i] == 0, then the ith level is
impossible to clear for both the players. A player gains 1 point on clearing a level and loses 1 point if the player fails to clear it.
At the start of the game, Alice will play some levels in the given order starting from the 0th level, after which Bob will play for the rest of the levels.
Alice wants to know the minimum number of levels she should play to gain more points than Bob, if both players play optimally to maximize their points.
Return theminimum number of levels Alice should play to gain more points. If this isnot possible, return-1.
Input: possible =[1,0,1,0]Output: 1Explanation:
Let's look at all the levels that Alice can play up to:* If Alice plays only level 0 and Bob plays the rest of the levels, Alice has 1 point,while Bob has -1+1-1=-1 point.* If Alice plays till level 1 and Bob plays the rest of the levels, Alice has 1-1=0 points,while Bob has 1-1=0 points.* If Alice plays till level 2 and Bob plays the rest of the levels, Alice has 1-1+1=1 point,while Bob has -1 point.Alice must play a minimum of 1 level to gain more points.
Input: possible =[1,1,1,1,1]Output: 3Explanation:
Let's look at all the levels that Alice can play up to:* If Alice plays only level 0 and Bob plays the rest of the levels, Alice has 1 point,while Bob has 4 points.* If Alice plays till level 1 and Bob plays the rest of the levels, Alice has 2 points,while Bob has 3 points.* If Alice plays till level 2 and Bob plays the rest of the levels, Alice has 3 points,while Bob has 2 points.* If Alice plays till level 3 and Bob plays the rest of the levels, Alice has 4 points,while Bob has 1 point.Alice must play a minimum of 3 levels to gain more points.
Input: possible =[0,0]Output: -1Explanation:
The only possible way isfor both players to play 1 level each. Alice plays
level 0 and loses 1 point. Bob plays level 1 and loses 1 point. As both
players have equal points, Alice can't gain more points than Bob.
We use prefix sums to track Alice’s and Bob’s possible scores for every split. Alice wants the minimum number of levels to play so her score is strictly greater than Bob’s, given both play optimally.
classSolution {
public:int minimumLevels(vector<int>& possible) {
int n = possible.size();
vector<int> prefix(n+1);
for (int i =0; i < n; ++i) prefix[i+1] = prefix[i] + (possible[i] ?1:-1);
for (int i =1; i < n; ++i) {
int alice = prefix[i];
int bob = prefix[n] - prefix[i];
if (alice > bob) return i;
}
return-1;
}
};
classSolution {
publicintminimumLevels(int[] possible) {
int n = possible.length;
int[] prefix =newint[n+1];
for (int i = 0; i < n; i++) prefix[i+1]= prefix[i]+ (possible[i]== 1 ? 1 : -1);
for (int i = 1; i < n; i++) {
int alice = prefix[i];
int bob = prefix[n]- prefix[i];
if (alice > bob) return i;
}
return-1;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
classSolution {
funminimumLevels(possible: IntArray): Int {
val n = possible.size
val prefix = IntArray(n+1)
for (i in0 until n) prefix[i+1] = prefix[i] + if (possible[i] ==1) 1else -1for (i in1 until n) {
val alice = prefix[i]
val bob = prefix[n] - prefix[i]
if (alice > bob) return i
}
return -1 }
}
1
2
3
4
5
6
7
8
9
10
11
defminimum_levels(possible: list[int]) -> int:
n = len(possible)
prefix = [0] * (n+1)
for i in range(n):
prefix[i+1] = prefix[i] + (1if possible[i] else-1)
for i in range(1, n):
alice = prefix[i]
bob = prefix[n] - prefix[i]
if alice > bob:
return i
return-1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
impl Solution {
pubfnminimum_levels(possible: Vec<i32>) -> i32 {
let n = possible.len();
letmut prefix =vec![0; n+1];
for i in0..n {
prefix[i+1] = prefix[i] +if possible[i] ==1 { 1 } else { -1 };
}
for i in1..n {
let alice = prefix[i];
let bob = prefix[n] - prefix[i];
if alice > bob {
return i asi32;
}
}
-1 }
}