https://www.acmicpc.net/problem/1062

 

1062번: 가르침

첫째 줄에 단어의 개수 N과 K가 주어진다. N은 50보다 작거나 같은 자연수이고, K는 26보다 작거나 같은 자연수 또는 0이다. 둘째 줄부터 N개의 줄에 남극 언어의 단어가 주어진다. 단어는 영어 소문

www.acmicpc.net

문제
  • N과 K과 주어진다.
    • N은 단어, K는 아는 단어이다.
    • 아는 단어를 6개로 지정했을 때 N개의 단어를 몇개 배울 수 있는지 최대 갯수를 출력한다.
풀이
  • 아는 단어 중 "anta", "tica"는 반드시 들어간다. 
    • "a", "n", "t", "i", "c" 5개의 단어이다.
      • 즉 K가 5이하로 주어지면 배울수 있는 단어는 없다.
      • K=26 이면 모든 단어 가능하다.
코드
  • 기본적인 a, n, t, i, c 체크 해주기
 static void beforeCheck(){
        //'a','n','t','i','c'
        alpha2['a' - 'a']  = true;
        alpha2['n' - 'a']  = true;
        alpha2['t' - 'a']  = true;
        alpha2['i' - 'a']  = true;
        alpha2['c' - 'a']  = true;
    }
  • dfs 설계
    • cnt == k 일 때 즉, 배울수 있는 단어를 최대로 배운다.
    • 배울 수 있는 단어를 체크한 뒤 가능여부의 max 값을 가져온다.
 static void dfs(int start ,int cnt){
        if(cnt == k){
            int possible = 0 ;
            for(int i = 0 ; i < n; i++){
                boolean flagTrue = true;
                for(int j = 0 ; j < arr[i].length() ; j++){
                    if(!alpha2[arr[i].charAt(j)-'a']){
                        flagTrue = false;
                        break;
                    }
                }
                if(flagTrue == true){
                    possible++;
                }
            }
            max = Math.max(max,possible);
            return ;
        }


        for(int i = start ; i <=26 ; i++){
            if(!alpha2[i]){
                alpha2[i] = true;
                dfs(i,cnt+1);
                alpha2[i] = false;
            }
        }

    }
  • 특정 단어 (가운데 단어만 빼서) 검사해서 효율성 올리기
 for(int i = 0 ; i < n ; i ++){
                String tempStr = br.readLine();
                arr[i] = tempStr.substring(4,tempStr.length()-4);
            }
            k  = k - 5;
            beforeCheck();
            dfs(0,0);
            System.out.println(max);
}

'Algorithm > ***Algorithm Java' 카테고리의 다른 글

프로그래머스_N으로 표현  (0) 2022.03.23
백준_1303_전투  (0) 2022.03.16
[백준]7576_토마토(bfs/dfs)  (0) 2022.02.23
[백준] 15684_사다리 조작(DFS) java  (0) 2022.02.23
백준_17090_미로탈출하기  (0) 2022.02.16

+ Recent posts