-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1750-B.py
40 lines (33 loc) · 824 Bytes
/
1750-B.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
t = int(input())
for _ in range(t):
n = int(input())
bits = [int(x) for x in input()]
max_1s = 0
max_0s = 0
cons_1s = 0
cons_0s = 0
all_1s = 0
all_0s = 0
for b in bits:
if b == 1:
all_1s += 1
cons_1s += 1
max_0s = max(max_0s, cons_0s)
cons_0s = 0
else:
all_0s += 1
cons_0s += 1
max_1s = max(max_1s, cons_1s)
cons_1s = 0
max_0s = max(max_0s, cons_0s)
max_1s = max(max_1s, cons_1s)
bits_cost = 0
if (all_1s != 0 and all_0s != 0):
bits_cost = all_1s * all_0s
elif all_0s == 0:
bits_cost = all_1s * all_1s
elif all_1s == 0:
bits_cost = all_0s * all_0s
print(max(
max_1s * max_1s, max_0s * max_0s, bits_cost
))