ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [알고리즘] 프로그래머스 1단계 - 모의고사
    Algorithm 2024. 5. 8. 15:55

    프로그래머스 문제 링크

    https://school.programmers.co.kr/learn/courses/30/lessons/42840

     

    문제 설명

    수포자는 수학을 포기한 사람의 준말입니다. 수포자 삼인방은 모의고사에 수학 문제를 전부 찍으려 합니다. 수포자는 1번 문제부터 마지막 문제까지 다음과 같이 찍습니다. 1번 수포자가 찍는 방식: 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, ... 2번 수포자가 찍는 방식: 2, 1, 2, 3, 2, 4, 2, 5, 2, 1, 2, 3, 2, 4, 2, 5, ... 3번 수포자가 찍는 방식: 3, 3, 1, 1, 2, 2, 4, 4, 5, 5, 3, 3, 1, 1, 2, 2, 4, 4, 5, 5, ... 1번 문제부터 마지막 문제까지의 정답이 순서대로 들은 배열 answers가 주어졌을 때, 가장 많은 문제를 맞힌 사람이 누구인지 배열에 담아 return 하도록 solution 함수를 작성해주세요. 제한 조건 시험은 최대 10,000 문제로 구성되어있습니다. 문제의 정답은 1, 2, 3, 4, 5중 하나입니다. 가장 높은 점수를 받은 사람이 여럿일 경우, return하는 값을 오름차순 정렬해주세요.

     

    예시

    answers

    [1,2,3,4,5]

     

    return
    [1]

    import java.util.ArrayList;
    
    class Solution {
        public int[] solution(int[] answers) {
            int[] answer = {};
    
            // 첫번째 수포자 ( 패턴 , n번째 수포자 id)로 생성자로 클래스 생성
            DefaultSupoja firstSupoja = new DefaultSupoja(new int[]{1,2,3,4,5}, 1);
            
            // 두번째 수포자
            DefaultSupoja secondSupoja = new DefaultSupoja(new int[]{2,1,2,3,2,4,2,5}, 2);
            
            // 3번째 수포자
            DefaultSupoja thirdSupoja = new DefaultSupoja(new int[]{3,3,1,1,2,2,4,4,5,5}, 3);
    
            ArrayList<Integer> result = new ArrayList<>();
            
            for(int i = 0; i < answers.length; i++){
                // 각 수포자 맞는지 여부
                firstSupoja.isCollect(answers[i]);
                secondSupoja.isCollect(answers[i]);
                thirdSupoja.isCollect(answers[i]);
                
                // 각 수포자의 다음 패턴으로 변경
                firstSupoja.checkNextPattern();
                secondSupoja.checkNextPattern();
                thirdSupoja.checkNextPattern();
            }
    
            // 각 수포자 별로 하드코딩 하여 
            if(secondSupoja.collectCount <= firstSupoja.collectCount && thirdSupoja.collectCount <= firstSupoja.collectCount){
                result.add(firstSupoja.id);
            }
            if(firstSupoja.collectCount <= secondSupoja.collectCount && thirdSupoja.collectCount <= secondSupoja.collectCount){ 
                result.add(secondSupoja.id);
            }
            if(firstSupoja.collectCount <= thirdSupoja.collectCount && secondSupoja.collectCount <= thirdSupoja.collectCount){
                result.add(thirdSupoja.id);
            }
            
            answer = result.stream().mapToInt(num -> num).toArray();
            
            return answer;
        }
    }
    
    class DefaultSupoja{
        public DefaultSupoja(){}
        
        public DefaultSupoja(int[] pattern, int id){
            this.pattern = pattern;
            this.id = id;
        }
        
        // 맞은 수
        int collectCount = 0;
        
        // 현재 인덱스
        int nowIndex = 0;
        
        // 찍는 패턴
        int[] pattern;
        
        // n번째 유저인지 id
        int id;
    
        public void isCollect(int num){
            if(pattern[nowIndex] == num){
                collectCount++;
            }
        }
    
        public void checkNextPattern(){
            if(pattern.length == nowIndex + 1){
                nowIndex = 0;
            }else{
                nowIndex++;
            }
        }
    }

    댓글

Designed by Tistory.