LeetCode. Maximize Distance to Closest Person
Description:
In a row of seats
, 1
represents a person sitting in that seat, and 0
represents that the seat is empty.
There is at least one empty seat, and at least one person sitting.
Alex wants to sit in the seat such that the distance between him and the closest person to him is maximized.
Return that maximum distance to closest person.
Example 1:
Input: [1,0,0,0,1,0,1]
Output: 2
Explanation:
If Alex sits in the second open seat (seats[2]), then the closest person has distance 2.
If Alex sits in any other open seat, the closest person has distance 1.
Thus, the maximum distance to the closest person is 2.
Example 2:
Input: [1,0,0,0]
Output: 3
Explanation:
If Alex sits in the last seat, the closest person is 3 seats away.
This is the maximum distance possible, so the answer is 3.
Note:
1 <= seats.length <= 20000
seats
contains only 0s or 1s, at least one0
, and at least one1
.
Accepted
45,488
Submissions
108,771
Detailed Code
class Solution { public int maxDistToClosest(int[] seats) { if(seats.length ==2){ return 1; } int result = 0; int max = Integer.MIN_VALUE; int count = 0; String s = ""; for(int i = 0; i<seats.length; i++){ s= s+ seats[i]; if(seats[i] == 0){ count++; } else{ if(count> max){ max = count; } count = 0; } } if(count> max){ max = count; } String sub = ""; for(int i =0; i<max;i++){ sub = sub+"0"; } if(sub.equals(s.substring(0,sub.length()))|| sub.equals(s.substring(s.length()-sub.length(),s.length()))){ result = max; } else{ if(max%2==0){ result = max/2; } else{ result = max/2+1; } } int sub_max_1 = 0; int sub_max_2 = 0; for(int i = 0; i<seats.length; i++){ if(seats[i]==0){ sub_max_1 ++; } else{ break; } } for(int i = seats.length-1; i>0; i--){ if(seats[i]==0){ sub_max_2++; } else{ break; } } int tmp = sub_max_1>sub_max_2? sub_max_1:sub_max_2; return result>tmp? result:tmp ; } }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,携手博客园推出1Panel与Halo联合会员
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步