ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [Java] - 옹알이 (2) (133499) (정규 표현식 Pattern, Matcher)
    알고리즘/프로그래머스 2024. 3. 14. 12:09

    📚 문제 - 133499

    머쓱이는 태어난 지 11개월 된 조카를 돌보고 있습니다. 조카는 아직 "aya", "ye", "woo", "ma" 네 가지 발음과 네 가지 발음을 조합해서 만들 수 있는 발음밖에 하지 못하고 연속해서 같은 발음을 하는 것을 어려워합니다. 문자열 배열 babbling이 매개변수로 주어질 때, 머쓱이의 조카가 발음할 수 있는 단어의 개수를 return하도록 solution 함수를 완성해주세요.


    제한사항

    • 1 ≤ babbling의 길이 ≤ 100
    • 1 ≤ babbling[i]의 길이 ≤ 30
    • 문자열은 알파벳 소문자로만 이루어져 있습니다.

    입출력 예

    N stages result
    5 [2, 1, 2, 6, 2, 4, 3, 3] [3,4,2,1,5]
    4 [4,4,4,4,4] [4,1,2,3]
    • 입출력 예 #1
      ["aya", "yee", "u", "maa"]에서 발음할 수 있는 것은 "aya"뿐입니다. 따라서 1을 return합니다.
    • 입출력 예 #2
      ["ayaye", "uuu", "yeye", "yemawoo", "ayaayaa"]에서 발음할 수 있는 것은 "aya" + "ye" = "ayaye", "ye" + "ma" + "woo" = "yemawoo"로 2개입니다. "yeye"는 같은 발음이 연속되므로 발음할 수 없습니다. 따라서 2를 return합니다.

    유의사항

    • 네 가지를 붙여 만들 수 있는 발음 이외에는 어떤 발음도 할 수 없는 것으로 규정합니다. 
      예를 들어 "woowo"는 "woo"는 발음할 수 있지만 "wo"를 발음할 수 없기 때문에 할 수 없는 발음입니다.

     

    ⌨️ 작성한 코드

    import java.util.regex.Pattern;
    
    class Solution {
        public int solution(String[] babbling) {
            int answer = 0;
            // 패턴들 컴파일
            Pattern p1 = Pattern.compile("ayaaya|yeye|woowoo|mama");
            Pattern p2 = Pattern.compile("aya|ye|woo|ma");
            
            for(String s : babbling){
                // Matcher객체로 패턴에 매칭되는 부분을 대체
                s = p1.matcher(s).replaceAll(" ");
                s = p2.matcher(s).replaceAll("");
                if(s.isEmpty()){
                    answer++;
                }
            }
            
            return answer;
        }
    }
    • 접근 방식:
      옹알이 문자열을 패턴으로 컴파일하고 Matcher 객체를 통해 연속된 옹알이 패턴은 " "로, 그렇지 않은 옹알이패턴은 ""로 replace한 뒤 s.isEmpty()가 true이면 answer++되게 했다.

    • 문제&해결:
      처음에는 패턴 클래스를 사용하지 않았는데 시간을 줄일 방법을 찾다가 패턴클래스에 대해 알게되어서 적용해봤다.
      s = s.replaceAll("ayaaya|yeye|woowoo|mama", " ");
      s = s.replaceAll("aya|ye|woo|ma", "");


    ✅ 배운 점

    [Pattern 클래스]

    정규 표현식의 컴파일된 표현을 말한다. 이 클래스는 정규 표현식을 컴파일하여 Pattern 객체를 생성하고, 그것을 나중에 Matcher 객체와 함께 사용하여 문자열을 검색한다.

     

    주요 메서드:

    • compile(String regex):
      주어진 정규 표현식으로부터 Pattern 객체를 컴파일
    • matcher(CharSequence input):
      주어진 입력 문자열에 대한 Matcher 객체를 반환
    • matches(String regex, CharSequence input):
      주어진 정규 표현식이 주어진 입력 문자열과 완벽하게 일치하는지 여부를 확인
      // 주어진 정규 표현식으로 Pattern 객체를 컴파일
      String regex = "\\d+"; // 숫자를 나타내는 정규 표현식
      Pattern pattern = Pattern.compile(regex); 
      
      // 문자열에 대한 Matcher 객체를 반환
      String input = "This is an example text. It includes some numbers like 12345 and symbols like @#$.";
      Matcher matcher = pattern.matcher(input);
      
      // 정규 표현식이 문자열과 완벽하게 일치 여부를 확인
      boolean isMatch = Pattern.matches(regex, input);
      
      System.out.println("Pattern: " + regex); // Pattern: \d+
      System.out.println("Input: " + input);   // Input: This is an example text. It includes some numbers like 12345 and symbols like @#$.
      System.out.println("Is there a perfect match? " + isMatch); // Is there a perfect match? true​

     

     

    [Matcher 클래스]

    입력 문자열에 대한 정규 표현식의 매칭을 검사한다. Pattern 객체를 사용하여 생성되며, 이를 통해 입력 문자열에 대한 검색, 매칭 및 그룹화를 할 수 있다.

     

    주요 메서드:

    • matches(): 패턴이 전체 문자열과 일치하는지 확인
    • find(): 다음 일치 항목을 찾기
    • group(): 매치된 부분 문자열을 반환
    • start() 및 end(): 매치된 부분 문자열의 시작 및 끝 인덱스를 반환
    • groupCount(): 매치된 그룹의 수를 반환
      String text = "This is an example text. It includes some numbers like 12345 and symbols like @#$.";
      String regex = "\\b\\w{5}\\b"; // 다섯 글자로 이루어진 단어를 찾는 정규 표현식
      
      // 정규 표현식을 컴파일하여 패턴 객체 생성
      Pattern pattern = Pattern.compile(regex);
      
      // 주어진 텍스트에 대한 Matcher 객체 생성
      Matcher matcher = pattern.matcher(text);
      
      // 패턴이 전체 문자열과 일치하는지 확인
      boolean isMatch = matcher.matches();
      System.out.println("Is there a perfect match? " + isMatch); // Is there a perfect match? false
      
      // 다음 일치 항목을 찾고 일치하는 부분 문자열을 출력
      while (matcher.find()) {
          String match = matcher.group(); // 매치된 부분 문자열 반환
          int start = matcher.start(); // 매치된 부분 문자열의 시작 인덱스 반환
          int end = matcher.end(); // 매치된 부분 문자열의 끝 인덱스 반환
      
          System.out.println("Found: " + match + ", Start index: " + start + ", End index: " + end);
      }
      
      // 매치된 그룹의 수를 반환
      int groupCount = matcher.groupCount();
      System.out.println("Number of groups: " + groupCount); // Number of groups: 0

     

     

Designed by Tistory.