본문 바로가기

BOJ/JAVA

숨바꼭질4

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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
 
public class BOJ_13913 {
    static int n, k;
    static int visited[] = new int[100001];
    static int dx[] = {1-12};
 
    public static void main(String[] args) throws IOException {
        // TODO Auto-generated method stub
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st= new StringTokenizer(br.readLine());
 
        int n = Integer.parseInt(st.nextToken());
        int k = Integer.parseInt(st.nextToken());
 
 
        for (int i = 0; i < 100001; i++) visited[i] = -1;
 
        bfs(n, k);
 
    }
    static void bfs(int start, int dest) {
        Queue<Integer> q = new LinkedList();
 
        q.add(start);
 
        visited[start] = -2//-2는 시작점 전 경로를 표시 (시작점전에는 어떤 경로도 없기 때문에) -> 양수로 하면 실제 경로랑 겹칠 수 있음 
 
        while(!q.isEmpty()) {
            int now = q.peek();
 
            q.poll();
 
            //갈 수 있는 경로를 전부 넣은 후 최단 경로를 구한다. 
            if (now == dest) {
                //경로를 찾아서 출력해야한다.
                //-2를 가지고 잇는 경로부터 출력한다그 다음에는 그 경로값을 가지고 있는 노드를 이어서 출력 
                List<Integer> list = new ArrayList<>();
 
                int pos = now;
 
                while(true) {
 
                    list.add(pos);
                    pos = visited[pos];
                    if (pos == -2break;
                }
 
                System.out.println(list.size()-1);
 
                for (int i = list.size()-1; i >= 0; i--) {
                    System.out.print(list.get(i) + " ");
                }
                break;
            }
 
            for (int i = 0; i < 3; i++) {
                int nx = now;
                if (i == 2) {
                    nx *= 2;
                }
                else {
                    nx += dx[i];
                }
 
                if (nx < 0 || nx > 100000continue;
 
                if (visited[nx] != -1 || visited[nx] == -2 ) continue;
 
                visited[nx] = now;
 
                q.add(nx);
            }
        }
 
 
 
    }
    static class Pos {
        int x;
        int cnt;
 
        public Pos(int x, int cnt) {
            this.x = x;
            this.cnt = cnt;
        }
    }
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

'BOJ > JAVA' 카테고리의 다른 글

영역구하기  (0) 2020.02.17
부분합  (0) 2020.02.17
한 줄로 서기  (0) 2020.02.16
좋은 수열  (0) 2020.02.16
자두나무  (0) 2020.02.15