본문 바로가기
알고리즘/그래프

[java 백준] 실버 4/2331번 반복수열

by Meaning_ 2021. 9. 26.
728x90
반응형

https://www.acmicpc.net/problem/2331

 

2331번: 반복수열

첫째 줄에 반복되는 부분을 제외했을 때, 수열에 남게 되는 수들의 개수를 출력한다.

www.acmicpc.net

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
반응형

댓글