728x90
반응형
https://www.acmicpc.net/problem/2331
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
|
import java.util.Scanner;
public class Main {
public static int[][] arr;
public static int[] visit;
public static int count = 1;
public static int lastCount = 0;
public static void dfs(int x, int count, int p) {
if (visit[x] == 0) {
visit[x] = count;
String s = Integer.toString(x);
int len = s.length();
int cnt = 0;
for (int j = 0; j < len; j++) {
cnt += Math.pow(Character.getNumericValue(s.charAt(j)), p);
}
count++;
dfs(cnt, count, p);
} else {
lastCount = visit[x] - 1;
return;
}
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int num = sc.nextInt();
int p = sc.nextInt();
visit = new int[1000000];
dfs(num, count, p);
System.out.println(lastCount);
}
}
|
cs |
visit[num]=몇번째로 들어온 수
--> 이게 가장 핵심이다.
예를들어 57,74,65,61,37... 의 수열이 있다면
57은 첫번째로 들어왔기에 visit[57]=1
이런식으로 진행된다.
만약 visit[num]>0이라면 중복된것이라는 것을 판단할 수 있다.
728x90
반응형
'알고리즘 > 그래프' 카테고리의 다른 글
[java 백준]실버 2/ 4963번 섬의 개수 (0) | 2021.09.30 |
---|---|
[java 백준] 실버 1/2667번 단지번호 붙이기 (0) | 2021.09.29 |
[java 백준]실버 2/ 10451번 순열 사이클 (0) | 2021.09.26 |
[java 백준] 실버 2/11724번 연결요소의 개수 (0) | 2021.09.25 |
[java 백준] 골드 4/ 1707번 이분 그래프 (0) | 2021.09.24 |
댓글