• 문제 링크
1963번: 소수 경로
소수를 유난히도 좋아하는 창영이는 게임 아이디 비밀번호를 4자리 ‘소수’로 정해놓았다. 어느 날 창영이는 친한 친구와 대화를 나누었는데: “이제 슬슬 비번 바꿀 때도 됐잖아” “응 지금
www.acmicpc.net
• 풀이 과정
• 풀이 코드
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class Main {
static int src, dest;
static boolean[] nonPrime, visit;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
StringTokenizer st;
sieve();
int t = Integer.parseInt(br.readLine());
while (t-- > 0) {
st = new StringTokenizer(br.readLine());
src = Integer.parseInt(st.nextToken());
dest = Integer.parseInt(st.nextToken());
int res = 0;
if (src != dest) {
visit = new boolean[10001];
res = bfs();
}
bw.write((res != -1 ? res : "Impossible") + "\n");
}
bw.flush();
}
private static int bfs() {
Queue<Pair> q = new LinkedList<>();
q.offer(new Pair(src, 0));
visit[src] = true;
while (!q.isEmpty()) {
Pair cur = q.poll();
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 10; j++) {
if (i == 0 && j == 0)
continue;
int num = convert(cur.num, i, j);
if (!nonPrime[num] && !visit[num]) {
visit[num] = true;
if (num == dest)
return cur.cnt + 1;
else
q.offer(new Pair(num, cur.cnt + 1));
}
}
}
}
return -1;
}
private static void sieve() {
nonPrime = new boolean[10000];
for (int i = 2; i < 10000; i++) {
if (!nonPrime[i]) {
for (int j = i * i; j < 10000; j += i)
nonPrime[j] = true;
}
}
}
private static int convert(int num, int i, int j) {
char[] pwd = Integer.toString(num).toCharArray();
pwd[i] = (char) (j + '0');
return Integer.parseInt(String.valueOf(pwd));
}
private static class Pair {
int num, cnt;
public Pair(int num, int cnt) {
this.num = num;
this.cnt = cnt;
}
}
}
'Problem Solving > Baekjoon' 카테고리의 다른 글
[백준] 14395 4연산 - Graph Theory / Java (0) | 2022.10.14 |
---|---|
[백준] 10026 적록색약 - Graph Theory / Java (0) | 2022.10.13 |
[백준] 6087 레이저 통신 - Graph Theory / Java (0) | 2022.10.11 |
[백준] 16954 움직이는 미로 탈출 - Graph Theory / Java (0) | 2022.10.10 |
[백준] 2206 벽 부수고 이동하기 - Graph Theory / Java (0) | 2022.10.09 |
댓글