Algorithm

[Programmers] 튜플

프로그래민 2020. 4. 27. 23:40
반응형

완전탐색을 하는 문제이다.

이문제는 약간의 문자열 파싱과 완전탐색을 하는 문제이다. 맨처음 어떻게 풀까 고민을 하다가 An번째에서의 특정 조건을 찾게 되었다. 그 조건은 An번째에서는 가장 많은 순선대로 앞에서 부터 나오고, 맨앞에 나오는 원소는 모든 배열에서 가지게 되고 그 후부터는 하나씩 감소한 갯수만큼 가진다는 것을 알게 되었다. 그래서 countingArr라는 것을 선언하여 1부터 100000까지 카운팅해주는 과정을 거쳐 최종 결과인 result를 찾았다.

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package programmers;
 
 
public class Solution_2019카카오겨울_튜플 {
    public static void main(String[] args) {
        String s="{{2},{2,1},{2,1,3},{2,1,3,4}}";
//        String s="{{1,2,3},{2,1},{1,2,4,3},{2}}";
//        String s="{{20,111},{111}}";
//        String s="{{123}}";
//        String s="{{4,2,3},{3},{2,3,4,1},{2,3}}";
        
        int[] arr=solution(s);
        
        System.out.println(Arrays.toString(arr));
    }
    
    static int[] solution(String s) {
        int[] countingArr=new int[100001];
        int count=0;
        int[] result;
        
        StringTokenizer st1 = new StringTokenizer(s,"{");
        StringTokenizer st2 = null;
        while(st1.hasMoreTokens()) {
            count=count+1;
            String temp=st1.nextToken().replace("}""");
            
            st2=new StringTokenizer(temp,",");
            while(st2.hasMoreTokens()) {
                countingArr[Integer.parseInt(st2.nextToken())]+=1;
            }
//            System.out.println(temp);
        }
        
        result=new int[count];
        int index=0;
        
        for(int i=count;i>0;i--) {
            for(int j=1;j<=1000000;j++) {
                if(countingArr[j]==i) {
                    result[index++]=j;
                    break;
                }
            }
        }
        
        return result;
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
                                                 
반응형

'Algorithm' 카테고리의 다른 글

[SWEA] 5658. 보물상자 비밀번호  (0) 2020.04.29
[Programmers] 불량 사용자  (0) 2020.04.28
[Programmers] 크레인 인형뽑기 게임  (0) 2020.04.27
[SWEA] 5653. 줄기세포배양  (0) 2020.04.27
[BOJ] 1748. 수 이어 쓰기1  (0) 2020.04.22