티스토리 뷰

정규표현식을 공부하고 푼 문제이다.

https://programmers.co.kr/learn/courses/30/lessons/17682

 

코딩테스트 연습 - [1차] 다트 게임

 

programmers.co.kr

다트 게임을 총 3번 진행하는데 각 게임의 점수를 계산하려고 정규표현식을 사용했다.

  1. 다트 게임은 총 3번의 기회로 구성된다.
  2. 각 기회마다 얻을 수 있는 점수는 0점에서 10점까지이다.
  3. 점수와 함께 Single(S), Double(D), Triple(T) 영역이 존재하고 각 영역 당첨 시 점수에서 1제곱, 2제곱, 3제곱 (점수1 , 점수2 , 점수3 )으로 계산된다.
  4. 옵션으로 스타상(*) , 아차상(#)이 존재하며 스타상(*) 당첨 시 해당 점수와 바로 전에 얻은 점수를 각 2배로 만든다. 아차상(#) 당첨 시 해당 점수는 마이너스된다.
  5. 스타상(*)은 첫 번째 기회에서도 나올 수 있다. 이 경우 첫 번째 스타상(*)의 점수만 2배가 된다. (예제 4번 참고)
  6. 스타상(*)의 효과는 다른 스타상(*)의 효과와 중첩될 수 있다. 이 경우 중첩된 스타상(*) 점수는 4배가 된다. (예제 4번 참고)
  7. 스타상(*)의 효과는 아차상(#)의 효과와 중첩될 수 있다. 이 경우 중첩된 아차상(#)의 점수는 -2배가 된다. (예제 5번 참고)
  8. Single(S), Double(D), Triple(T)은 점수마다 하나씩 존재한다.
  9. 스타상(*), 아차상(#)은 점수마다 둘 중 하나만 존재할 수 있으며, 존재하지 않을 수도 있다.
import java.util.regex.Matcher;
import java.util.regex.Pattern;


class Solution {
    private final String TEN = "K";

    public int solution(String dartResult) {
        int answer = 0;
        int[] scores = new int[3];
        int index = 0;

        String regex = "1?[0-9]+[SDT]{1}[*#]?";
        Pattern pattern = Pattern.compile(regex);
        Matcher matcher = pattern.matcher(dartResult);

        while (matcher.find()) {
            String group = matcher.group();
            group = group.replaceAll("10", TEN); // 10점을 K로 치환
            String[] groups = group.split("");
            
            // [1]. 점수계산
            int score = groups[0].equals(TEN) 
                    ? 10 
                    : Integer.valueOf(groups[0]);
            
            // [2]. 영역 계산
            score = getScopeScore(groups[1], score);
            scores[index] = score;
            
            // [3]. 옵션 계산
            if (groups.length == 3) {
                String option = groups[2];
                if (option.equals("#")) {
                    scores[index] = -scores[index];
                } else {
                    scores[index] *= 2;
                    if (index != 0) {
                        scores[index - 1] *= 2;
                    }
                }
            }
            
            index++;
        }

        for (int score : scores) {
            answer += score;
        }
        return answer;
    }

    private int getScopeScore(String scope, int score) {
        if (scope.equals("S")) {
            return score;
        } else if (scope.equals("D")) {
            return score * score;
        } else {
            return score * score * score;
        }
    }
}

public class code {
    public static void main(String[] args) {
        Solution s1 = new Solution();
        System.out.println(s1.solution("1S2D*3T"));
    }
}

공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함