# 유형 : 탐색, DFS

# dfs 쉬운 문제중 하나, 인덱스만 잘 설정해서 탐색돌리면 해결가능

 

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 bj;
 
 
public class p6603_ {
    static int arr[];
    static int cnt=0;
    static int N;
    static boolean visit[];
    static ArrayList<Integer> arrList = new ArrayList<>();
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine());
        N = Integer.parseInt(st.nextToken());
        while(N!=0) {
            arr = new int[N];
            visit = new boolean[N];
            for(int i=0; i<N; i++)
                arr[i] = Integer.parseInt(st.nextToken());
            
            for(int i=0; i<N; i++) {
                arrList.add(arr[i]);
                dfs(i);
                arrList.remove(0);
            }
            st = new StringTokenizer(br.readLine());
            N = Integer.parseInt(st.nextToken());
            System.out.println();
        }
        
    }
    public static void dfs(int index) {
        if(arrList.size() == 6) {
            for(int i=0; i<arrList.size(); i++)
                System.out.print(arrList.get(i)+" ");
            System.out.println();
            return;
        }
        
        
        for(int i=index+1; i<N; i++) {
            arrList.add(arr[i]);
            dfs(i);
            arrList.remove(arrList.size()-1);
        }
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

+ Recent posts