-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path849.py
44 lines (34 loc) · 907 Bytes
/
849.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
41
42
43
44
seats = list(map(int, input().split(',')))
maxi = 0
temp= 0
may_max =0
i=0
if seats[0] == 0:
while seats[i] !=1:
may_max += 1
i +=1
for j in range(i, len(seats)):
if seats[j] == 0:
temp +=1
else:
maxi = max(maxi, temp)
temp = 0
print(max(may_max, temp, (maxi+1)//2))
# There is solution which is simulated to the leetcode
# class Solution:
# def maxDistToClosest(self, seats: List[int]) -> int:
# maxi = 0
# temp = 0
# may_max = 0
# i = 0
# if seats[0] == 0:
# while seats[i] !=1:
# i+=1
# may_max += 1
# for j in range(i, len(seats)):
# if seats[j] == 0:
# temp += 1
# else:
# maxi = max(maxi, temp)
# temp = 0
# return max(temp, may_max, (maxi+1)//2)