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. 1 <= seats.length <= 20000
  2. seats contains only 0s or 1s, at least one 0, and at least one 1.
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 ;
    }
    
}

 

Guess you like

Origin www.cnblogs.com/codingyangmao/p/11950258.html