[JAVA] 프로그래머스 체육복 (탐욕법)

윤재열·2022년 9월 2일
0

algorithm

목록 보기
15/18

전체코드

public class 체육복 {
    public static void main(String[] args) {
        int n = 5;// 전체 학생수
        int[] lost = new int[]{2,4};//도난 당한 학생들의 번호
        int[] reserve = new int[]{1,3,5};//여별 옷이 있는 있는 학생들의 번호

        int answer = 0;
        int[] total = new int[n+2];//전체 0으로 초기화
        
        //여벌옷이있으면 1, 친구의 도움이 필요없다면 0, 체육복이없다면 -1

        for(int i : reserve){//여벌 옷이 있는 학생들은 +1
            total[i]++;
        }
        for(int i : lost){//도난 당한 사람들은 -1
            total[i]--;
        }
        for(int i=1; i<= n; i++){
            if(total[i] == -1){//루프를 돌때 i가 -1이라면 앞뒤의 1이있나 탐색
                if(total[i-1] == 1){
                    total[i]++;
                    total[i-1]--;
                }else if(total[i+1] == 1){
                    total[i]++;
                    total[i+1]--;
                }

            }
        }
        for(int i=1; i<=n; i++){//1번학생부터 전체학생수n까지 루프
            if(total[i]>=0){
                answer++;
            }
        }
        System.out.println(answer);
    }
}

결과값(answer)

profile
블로그 이전합니다! https://jyyoun1022.tistory.com/

0개의 댓글

관련 채용 정보